13 lines
131 B
C++
13 lines
131 B
C++
#ifndef TOKEN_H
|
|
#define TOKEN_H
|
|
|
|
class Token {
|
|
public:
|
|
enum Kind {
|
|
integer,
|
|
real,
|
|
eof
|
|
};
|
|
};
|
|
|
|
#endif |