This is an example of how to use dynamic invocation macros. More details about this example.
#include "ConceptRTUtils.h"
{
public:
Machine()
{
SetSerialNumber(0);
_currentProcessLoadRatio = 0.0;
_internalFlag = false;
}
private:
bool _internalFlag;
};
{
private:
void Method() {};
Int32 MethodA() {
return 0; };
void MethodC() {};
void MethodD(
Int32 arg0,
bool arg1) {};
};
{
Child Child1;
private:
Child _child2;
};