33 lines
595 B
C++
33 lines
595 B
C++
#ifndef __Operand_h__
|
|
#define __Operand_h__
|
|
|
|
#include "MString.h"
|
|
#include "Global.h"
|
|
|
|
namespace jet {
|
|
|
|
class Operand {
|
|
|
|
public:
|
|
Operand(coreutils::ZString &in,
|
|
Global &global,
|
|
std::map<coreutils::MString, coreutils::MString> &lvariables,
|
|
std::map<coreutils::MString, coreutils::MString> &keywords);
|
|
|
|
bool isNumber;
|
|
|
|
///
|
|
/// boolean is set by internal processes to return the boolean
|
|
/// equivilent value.
|
|
///
|
|
|
|
bool boolean;
|
|
coreutils::MString string = "";
|
|
|
|
double doubleValue;
|
|
|
|
|
|
};
|
|
}
|
|
|
|
#endif |