123456789101112131415161718192021222324252627282930 |
- #include "../Befehl/KSGSFunktion.h"
- namespace KSGScript
- {
- class KSGScriptObj;
- class KSGSRückrufInstanz : public KSGSFunktionInstanz
- {
- private:
- RCArray< KSGSVariable > *parameter;
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSRückrufInstanz( KSGScriptObj *obj );
- // Destruktor
- __declspec( dllexport ) ~KSGSRückrufInstanz();
- // nicht constant
- __declspec( dllexport ) virtual void setParameter( Array< KSGSVariableDef* > *zDef, RCArray< KSGSVariable > *vars ) override;
- __declspec( dllexport ) virtual KSGSVariable *startFunktion() override;
- };
- class KSGSRückrufFunktion : public KSGSFunktion
- {
- public:
- // Konstruktor
- __declspec( dllexport ) KSGSRückrufFunktion();
- // nicht constant
- __declspec( dllexport ) virtual KSGSFunktionInstanz *erstellInstanz( KSGScriptObj *obj, KSGSVariable *klasse, RCArray< KSGSVariable > *params );
- };
- }
|