#ifndef SYMBOL_H #define SYMBOL_H #include class Symbol { public: //Symbol(char o, char* t, char* f, int g); Symbol(char o, char* t, char* f); ~Symbol(); Symbol* clone(); int equals(Symbol* symbol); const char getOne(); const char* getThree(); const char* getFull(); //int isGap(); private: char one; char* three; char* full; //int gap; }; #endif