My Project
Loading...
Searching...
No Matches
Operand.h
1#ifndef __Operand_h__
2#define __Operand_h__
3
4#include "MString.h"
5#include "Tag.h"
6#include "Global.h"
7
8namespace jet {
9
10 class Operand {
11
12 public:
13 Operand(coreutils::ZString &in, Tag &tag);
14
15 bool isNumber;
16
21
22 bool boolean;
23 coreutils::MString string = "";
24
25 double doubleValue;
26
27
28 };
29}
30
31#endif
Definition Operand.h:10
bool boolean
Definition Operand.h:22
Definition Tag.h:19