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