PixelLightAPI
.
|
Abstract script binding class. More...
#include <ScriptBinding.h>
Public Member Functions | |
virtual PLCORE_API | ~ScriptBinding () |
Destructor. | |
Protected Member Functions | |
PLCORE_API | ScriptBinding () |
Constructor. | |
PLCORE_API | ScriptBinding (const ScriptBinding &cSource) |
Copy constructor. | |
PLCORE_API ScriptBinding & | operator= (const ScriptBinding &cSource) |
Copy operator. |
Abstract script binding class.
Usually the RTTI script binding class instance methods will be available to the script as simple global functions. So, this has nothing to do with using OOP within scripts. It's just adding global functions to scripts.
Each script binding should have the following property:
virtual PLCORE_API PLCore::ScriptBinding::~ScriptBinding | ( | ) | [virtual] |
Destructor.
PLCORE_API PLCore::ScriptBinding::ScriptBinding | ( | ) | [protected] |
PLCORE_API PLCore::ScriptBinding::ScriptBinding | ( | const ScriptBinding & | cSource | ) | [protected] |
Copy constructor.
[in] | cSource | Source to copy from |
PLCORE_API ScriptBinding& PLCore::ScriptBinding::operator= | ( | const ScriptBinding & | cSource | ) | [protected] |
Copy operator.
[in] | cSource | Source to copy from |
|