KSGSInt.h 750 B

123456789101112131415161718192021222324252627
  1. #ifndef KSGSInt_H
  2. #define KSGSInt_H
  3. #include "../Befehl/KSGSKlasse.h"
  4. namespace KSGScript
  5. {
  6. class KSGSIntKlasse : public KSGSKlasseInstanz
  7. {
  8. private:
  9. int val;
  10. public:
  11. // Konstruktor
  12. __declspec( dllexport ) KSGSIntKlasse( KSGScriptProcessor *zObj, int std = 0 );
  13. // Destruktor
  14. __declspec( dllexport ) ~KSGSIntKlasse();
  15. // nicht constant
  16. __declspec( dllexport ) void set( int i );
  17. __declspec( dllexport ) virtual KSGSVariable *doOperator( int id, KSGSVariable *rechts ) override;
  18. // constant
  19. __declspec( dllexport ) virtual int getVal() const;
  20. __declspec( dllexport ) virtual KSGSVariable *umwandelnIn( int typ ) const override;
  21. };
  22. }
  23. #endif