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 530 of file util.cpp.

Constructor & Destructor Documentation

◆ CharAroundSpace()

CharAroundSpace::CharAroundSpace ( )
inline

Definition at line 532 of file util.cpp.

533 {
534 charMap[static_cast<int>('(')].before=false;
535 charMap[static_cast<int>('=')].before=false;
536 charMap[static_cast<int>('&')].before=false;
537 charMap[static_cast<int>('*')].before=false;
538 charMap[static_cast<int>('[')].before=false;
539 charMap[static_cast<int>('|')].before=false;
540 charMap[static_cast<int>('+')].before=false;
541 charMap[static_cast<int>(';')].before=false;
542 charMap[static_cast<int>(':')].before=false;
543 charMap[static_cast<int>('/')].before=false;
544
545 charMap[static_cast<int>('=')].after=false;
546 charMap[static_cast<int>(' ')].after=false;
547 charMap[static_cast<int>('[')].after=false;
548 charMap[static_cast<int>(']')].after=false;
549 charMap[static_cast<int>('\t')].after=false;
550 charMap[static_cast<int>('\n')].after=false;
551 charMap[static_cast<int>(')')].after=false;
552 charMap[static_cast<int>(',')].after=false;
553 charMap[static_cast<int>('<')].after=false;
554 charMap[static_cast<int>('|')].after=false;
555 charMap[static_cast<int>('+')].after=false;
556 charMap[static_cast<int>('(')].after=false;
557 charMap[static_cast<int>('/')].after=false;
558 }
CharElem charMap[256]
Definition util.cpp:566

References charMap.

Member Data Documentation

◆ charMap

CharElem CharAroundSpace::charMap[256]

Definition at line 566 of file util.cpp.

Referenced by CharAroundSpace(), and removeRedundantWhiteSpace().


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