21 lines
393 B
C++
21 lines
393 B
C++
#ifndef _AS68HC11_TABLE_HPP_
|
|
#define _AS68HC11_TABLE_HPP_
|
|
#ifndef _BSPTREE_BINARYTREE_HPP_
|
|
#include <bsptree/bintree.hpp>
|
|
#endif
|
|
#ifndef _AS68HC11_SYMBOL_HPP_
|
|
#include <as68hc11/symbol.hpp>
|
|
#endif
|
|
|
|
class String;
|
|
|
|
class Table : public BinaryTree<Symbol>
|
|
{
|
|
public:
|
|
Table(void);
|
|
virtual ~Table();
|
|
BOOL locateSymbol(const String &symbolString,SmartPointer<Symbol> &symbol);
|
|
private:
|
|
};
|
|
#endif
|