#include <GlobalDefinitions.h>
Inheritance diagram for printBase:


Public Member Functions | |
| printBase (const Word word, int wordLength) | |
| printBase (const Word word, const HashTableGeneric &hashTable) | |
| printBase (const WordSequence &wordSeq, int wordLength) | |
| printBase (const WordSequence &wordSeq, const HashTableGeneric &hashTable) | |
Definition at line 603 of file GlobalDefinitions.h.
| printBase::printBase | ( | const Word | word, | |
| int | wordLength | |||
| ) | [inline] |
Definition at line 606 of file GlobalDefinitions.h.
00606 : 00607 PrintFromWord( word, wordLength, gBaseBits, gBaseNames ) {} printBase( const Word word, const HashTableGeneric& hashTable ) :
| printBase::printBase | ( | const Word | word, | |
| const HashTableGeneric & | hashTable | |||
| ) | [inline] |
Definition at line 608 of file GlobalDefinitions.h.
00608 : 00609 PrintFromWord( word, hashTable, gBaseBits, gBaseNames ) {} printBase( const WordSequence& wordSeq, int wordLength ) :
| printBase::printBase | ( | const WordSequence & | wordSeq, | |
| int | wordLength | |||
| ) | [inline] |
Definition at line 610 of file GlobalDefinitions.h.
00610 : 00611 PrintFromWord( wordSeq, wordLength, gBaseBits, gBaseNames ) {} printBase( const WordSequence& wordSeq, const HashTableGeneric& hashTable ) :
| printBase::printBase | ( | const WordSequence & | wordSeq, | |
| const HashTableGeneric & | hashTable | |||
| ) | [inline] |
Definition at line 612 of file GlobalDefinitions.h.
00612 : 00613 PrintFromWord( wordSeq, hashTable, gBaseBits, gBaseNames ) {} };
1.5.2