Doxygen
Loading...
Searching...
No Matches
CharAroundSpace Struct Reference
Collaboration diagram for CharAroundSpace:

Classes

struct  CharElem

Public Member Functions

 CharAroundSpace ()

Public Attributes

CharElem charMap [256]

Detailed Description

Definition at line 384 of file util.cpp.

Constructor & Destructor Documentation

◆ CharAroundSpace()

CharAroundSpace::CharAroundSpace ( )
inline

Definition at line 386 of file util.cpp.

387 {
388 charMap[static_cast<int>('(')].before=false;
389 charMap[static_cast<int>('=')].before=false;
390 charMap[static_cast<int>('&')].before=false;
391 charMap[static_cast<int>('*')].before=false;
392 charMap[static_cast<int>('[')].before=false;
393 charMap[static_cast<int>('|')].before=false;
394 charMap[static_cast<int>('+')].before=false;
395 charMap[static_cast<int>(';')].before=false;
396 charMap[static_cast<int>(':')].before=false;
397 charMap[static_cast<int>('/')].before=false;
398
399 charMap[static_cast<int>('=')].after=false;
400 charMap[static_cast<int>(' ')].after=false;
401 charMap[static_cast<int>('[')].after=false;
402 charMap[static_cast<int>(']')].after=false;
403 charMap[static_cast<int>('\t')].after=false;
404 charMap[static_cast<int>('\n')].after=false;
405 charMap[static_cast<int>(')')].after=false;
406 charMap[static_cast<int>(',')].after=false;
407 charMap[static_cast<int>('<')].after=false;
408 charMap[static_cast<int>('|')].after=false;
409 charMap[static_cast<int>('+')].after=false;
410 charMap[static_cast<int>('(')].after=false;
411 charMap[static_cast<int>('/')].after=false;
412 }
CharElem charMap[256]
Definition util.cpp:420

References charMap.

Member Data Documentation

◆ charMap

CharElem CharAroundSpace::charMap[256]

Definition at line 420 of file util.cpp.

Referenced by CharAroundSpace(), and removeRedundantWhiteSpace().


The documentation for this struct was generated from the following file: