编程代考 #ifndef SYMBOL_TABLE_H

#ifndef SYMBOL_TABLE_H
#define SYMBOL_TABLE_H

#include // this contains uint16_t

Copyright By PowCoder代写 加微信 powcoder

#include

// indexable dictionary
#include // process c++ string

using namespace std;

class SymbolTable {
SymbolTable();
~SymbolTable();

void addSymbol(string symbol, uint16_t value);
int getSymbol(string symbol);

#endif /* SYMBOL_TABLE_H */

程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com