KSGSDouble.h 777 B

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