123456789101112131415161718192021222324 |
- #ifndef KAGSThread_H
- #define KAGSThread_H
- #include "../Befehl/KSGSKlasse.h"
- namespace KSGScript
- {
- class KSGSThreadKlasse : public KSGSKlasseInstanz
- {
- private:
- KSGSFunktionInstanz *func;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSThreadKlasse( KSGScriptObj *zObj, KSGSFunktionInstanz *f );
- // Destruktor
- __declspec( dllexport ) ~KSGSThreadKlasse();
- // nicht constant
- __declspec( dllexport ) void threadEnde();
- __declspec( dllexport ) virtual KSGSVariable *startFunktion( int id, bool access, RCArray< KSGSVariable > *parameter ) override;
- };
- }
- #endif
|