KSGSText.h 914 B

12345678910111213141516171819202122232425262728
  1. #ifndef KSGSText_H
  2. #define KSGSText_H
  3. #include "../Befehl/KSGSKlasse.h"
  4. namespace KSGScript
  5. {
  6. class KSGSTextKlasse : public KSGSKlasseInstanz
  7. {
  8. private:
  9. Text *val;
  10. public:
  11. // Konstruktor
  12. __declspec( dllexport ) KSGSTextKlasse( KSGScriptProcessor *zObj, const char *std = "" );
  13. // Destruktor
  14. __declspec( dllexport ) ~KSGSTextKlasse();
  15. // nicht constant
  16. __declspec( dllexport ) virtual KSGSVariable *startFunktion( int id, bool access, RCArray< KSGSVariable > *parameter ) override;
  17. __declspec( dllexport ) virtual KSGSVariable *doOperator( int id, KSGSVariable *rechts ) override;
  18. // constant
  19. __declspec( dllexport ) virtual Text *getVal() const;
  20. __declspec( dllexport ) virtual Text *zVal() const;
  21. __declspec( dllexport ) virtual KSGSVariable *umwandelnIn( int typ ) const override;
  22. };
  23. }
  24. #endif