12345678910111213141516171819202122232425262728293031 |
- #ifndef KSGSTastaturEreignis_H
- #define KSGSTastaturEreignis_H
- #include "../Befehl/KSGSKlasse.h"
- #include <TastaturEreignis.h>
- namespace KSGScript
- {
- class KSGSTastaturEreignisKlasse : public KSGSKlasseInstanz
- {
- private:
- TastaturEreignis val;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSTastaturEreignisKlasse( KSGScriptObj *zObj, TastaturEreignis std = { 0, 0, 0 } );
- // Destruktor
- __declspec( dllexport ) ~KSGSTastaturEreignisKlasse();
- // nicht constant
- __declspec( dllexport ) void set( TastaturEreignis &te );
- __declspec( dllexport ) virtual KSGSVariable *startFunktion( int id, bool access, RCArray< KSGSVariable > *parameter ) override;
- __declspec( dllexport ) virtual KSGSVariable *doOperator( int id, KSGSVariable *rechts ) override;
- // constant
- __declspec( dllexport ) virtual KSGSVariable *getVariable( int id, bool zugriff ) const override;
- __declspec( dllexport ) virtual TastaturEreignis getVal() const;
- // Reference Counting
- __declspec( dllexport ) virtual KSGSVariable *release() override;
- };
- }
- #endif
|