2024-06-01 15:59:51 -05:00

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 623a0779c74cb7565145d45548376308