DOCLASS Macro

Syntax

#define DOCLASS(C) _DO_##C

Parameters

Name Description
C The class name.

Description

Macro used when referencing the base DataSet class.

If the DDL is defined as follows:
doclass GameObject {
};

the GameObject class will be defined in the application as follows:

class GameObject : public DOCLASS(GameObject) {
};

Revision History

2012/08/07
Initial version.

CONFIDENTIAL