#ifndef _AS68HC11_TABLE_HPP_ #define _AS68HC11_TABLE_HPP_ #ifndef _BSPTREE_BINARYTREE_HPP_ #include #endif #ifndef _AS68HC11_SYMBOL_HPP_ #include #endif class String; class Table : public BinaryTree { public: Table(void); virtual ~Table(); BOOL locateSymbol(const String &symbolString,SmartPointer &symbol); private: }; #endif