#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 ); }; }