1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#ifndef TOKEN_H
#define TOKEN_H
class Number;
namespace Bu
{
class String;
class Formatter;
};
class Token
{
public:
enum Type
{
tNumber,
tVariable,
tCommand,
tPlus,
tMinus,
tDivide,
tMultiply,
tModulus,
tOpenParen,
tCloseParen,
tEquals,
tString,
tEndOfLine,
tEndOfInput
};
Token( Type eType );
Token( Type eType, Bu::String *s );
Token( Type eType, Number *n );
Token( const Token &rSrc );
~Token();
Type eType;
union
{
Bu::String *sVal;
class Number *nVal;
};
};
Bu::Formatter &operator<<( Bu::Formatter &f, Token::Type eType );
#endif
|