IGLib 1.4
The IGLib base library for development of numerical, technical and business applications.
|
Interface for classes that can be dynamically loadeded from scripts and run, which provides functionality of dynamic scripting. It is recommendable to derive all such classes from the LoadableScriptBase base class. More...
Public Member Functions | |
string | Run (string[] arguments) |
Runs the executable method of the object. | |
void | Initialize (string[] arguments) |
Initializes the current object. | |
Properties | |
string[] | InitializationArguments [get, set] |
Arguments used by the initialization method. | |
bool | IsInitialized [get] |
Whether the object has been initialized or not. |
Interface for classes that can be dynamically loadeded from scripts and run, which provides functionality of dynamic scripting. It is recommendable to derive all such classes from the LoadableScriptBase base class.
$A Igor Jul09 May10;
string IG::Lib::ILoadableScript::Run | ( | string[] | arguments | ) |
Runs the executable method of the object.
arguments | String arguments to the executable method. |
Implemented in IG::Lib::LoadableScriptBase.
void IG::Lib::ILoadableScript::Initialize | ( | string[] | arguments | ) |
Initializes the current object.
arguments | Arguments of initialization. |
Implemented in IG::Lib::LoadableScriptBase.
string [] IG::Lib::ILoadableScript::InitializationArguments [get, set] |
Arguments used by the initialization method.
Implemented in IG::Lib::LoadableScriptBase.
bool IG::Lib::ILoadableScript::IsInitialized [get] |
Whether the object has been initialized or not.
Implemented in IG::Lib::LoadableScriptBase.