KSGSThread.h 674 B

1234567891011121314151617181920212223242526
  1. #ifndef KAGSThread_H
  2. #define KAGSThread_H
  3. #include "../Befehl/KSGSKlasse.h"
  4. namespace KSGScript
  5. {
  6. class KSGSThreadKlasse : public KSGSKlasseInstanz
  7. {
  8. private:
  9. KSGSFunktionInstanz *func;
  10. public:
  11. // Konstruktor
  12. __declspec( dllexport ) KSGSThreadKlasse( KSGScriptObj *zObj, KSGSFunktionInstanz *f );
  13. // Destruktor
  14. __declspec( dllexport ) ~KSGSThreadKlasse();
  15. // nicht constant
  16. __declspec( dllexport ) void threadEnde();
  17. __declspec( dllexport ) virtual KSGSVariable *startFunktion( int id, bool access, RCArray< KSGSVariable > *parameter ) override;
  18. // Reference Counting
  19. __declspec( dllexport ) virtual KSGSVariable *release() override;
  20. };
  21. }
  22. #endif