Files
Work/as68hc11/backup/TABLE.HPP
2024-08-07 09:12:07 -04:00

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