12345678910111213141516171819202122232425262728 |
- #ifndef KSGSBool_H
- #define KSGSBool_H
- #include "../Befehl/KSGSKlasse.h"
- namespace KSGScript
- {
- class KSGSBoolKlasse : public KSGSKlasseInstanz
- {
- private:
- bool val;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSBoolKlasse( KSGScriptObj *zObj, bool std = 0 );
- // Destruktor
- __declspec( dllexport ) ~KSGSBoolKlasse();
- // nicht constant
- __declspec( dllexport ) virtual KSGSVariable *doOperator( int id, KSGSVariable *rechts ) override;
- // constant
- __declspec( dllexport ) virtual bool getVal() const;
- __declspec( dllexport ) virtual KSGSVariable *umwandelnIn( int typ ) const override;
- // Reference Counting
- __declspec( dllexport ) virtual KSGSVariable *release() override;
- };
- }
- #endif
|