12345678910111213141516171819 |
- #ifndef KSGSVariable_H
- #define KSGSVariable_H
- #include <Text.h>
- using namespace Framework;
- namespace KSGScript
- {
- struct KSGSVariableDef
- {
- int typId;
- int id;
- int sichtbar; // 0 = global, 1 = global in klasse, 2 = lokal in klasse, 3 = lokal in Funktion
- Text wert;
- };
- }
- #endif
|