KSGSVariable.h 288 B

12345678910111213141516171819
  1. #ifndef KSGSVariable_H
  2. #define KSGSVariable_H
  3. #include <Text.h>
  4. using namespace Framework;
  5. namespace KSGScript
  6. {
  7. struct KSGSVariableDef
  8. {
  9. int typId;
  10. int id;
  11. int sichtbar; // 0 = global, 1 = global in klasse, 2 = lokal in klasse, 3 = lokal in Funktion
  12. Text wert;
  13. };
  14. }
  15. #endif