server/libpoly/include/SymTable.h

18 lines
233 B
C
Raw Normal View History

2022-03-05 12:44:06 +02:00
#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