diff options
Diffstat (limited to 'src/pim/Generator.h')
| -rw-r--r-- | src/pim/Generator.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/pim/Generator.h b/src/pim/Generator.h index 0121c13..0287339 100644 --- a/src/pim/Generator.h +++ b/src/pim/Generator.h @@ -36,10 +36,13 @@ namespace pim } ~SymbolNotFoundException() throw() {}; }; + class Type + { + enum { Integer = Token::IntegerSymbol, Decimal = Token::DecimalSymbol }; + }; class Definition { public: - enum { Integer = Token::IntegerSymbol, Decimal = Token::DecimalSymbol }; std::string Name; int Type; int StackPosition; @@ -145,6 +148,8 @@ namespace pim void GetParticle(); void GetPosition(); void KillParticle(); + void LoadProperty(std::string property); + void StoreProperty(std::string property); void IntegerToDecimal(); void DecimalToInteger(); |
