19 lines
281 B
C++
19 lines
281 B
C++
#ifndef __POLY_SYMTABLE_H__
|
|
#define __POLY_SYMTABLE_H__
|
|
|
|
#include <string>
|
|
|
|
class CSymTable
|
|
{
|
|
public:
|
|
CSymTable(int aTok, std::string aStr);
|
|
virtual ~CSymTable();
|
|
|
|
double dVal;
|
|
int token;
|
|
std::string strlex;
|
|
};
|
|
|
|
#endif
|
|
//martysama0134's 2e58d0b8baeb072acdf3afc4a5d1999f
|