#include <HashTableGeneric.h>
Public Member Functions | |
| SequenceAdapter * | create (int bitsPerSymbol, int wordLength, int stepLength) |
Definition at line 153 of file HashTableGeneric.h.
| SequenceAdapter* AdapterFactory::create | ( | int | bitsPerSymbol, | |
| int | wordLength, | |||
| int | stepLength | |||
| ) | [inline] |
Definition at line 157 of file HashTableGeneric.h.
Referenced by HashTableGeneric::createHashTable().
00158 { 00159 return 00160 ( (wordLength==stepLength) 00161 ? new SequenceAdapter() 00162 : new SequenceAdapterWithOverlap 00163 ( bitsPerSymbol, wordLength, stepLength ) ); 00164 } // ~create
Here is the caller graph for this function:

1.5.2