name: SearchSymbol : public String

synopsis:
g++ [flags ...] file ... -l /isip/tools/lib/$ISIP_BINARY/lib_search.a

#include <SearchSymbol.h>

~SearchSymbol();
SearchSymbol();
SearchSymbol(const SearchSymbol& copy_sym);
SearchSymbol(const String& symbol);
quick start:
#include <SearchSymbol.h>
#include <Vector.h>

SearchSymbol start_sym;
start_sym.assign(L"_START_");
SearchSymbol end_sym;
start_sym.assign(L"_END_");

Vector word_syms(3);
word_syms(0).assign(L"one");
word_syms(1).assign(L"two");
word_syms(2).assign(L"oh");  

Vector phone_syms(6);
phone_syms(0).assign(L"w");
phone_syms(1).assign(L"ae");
phone_syms(2).assign(L"n");
phone_syms(3).assign(L"t");
phone_syms(4).assign(L"uw");
phone_syms(5).assign(L"ow");
 
Vector state_syms(6);
state_syms(0).assign(L"w_1");
state_syms(1).assign(L"ae_1");
state_syms(2).assign(L"n_1");
state_syms(3).assign(L"t_1");
state_syms(4).assign(L"uw_1");
state_syms(5).assign(L"ow_1");
description: dependencies:

public constants:

error codes:

protected data:

required public methods:

class-specific public methods:

private methods:

examples:

notes: