KSGSArray.h 942 B

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