#ifndef TOKEN_H #define TOKEN_H #include #include using namespace std; class Token { public: Token(); ~Token(); bool withPrefix; bool withSuffix; bool isFixed; bool isBoundary; int inputMethod; vector characterStringVector; string word; }; #endif