#define DATASET(C) _DS_##C
Name | Description | |
---|---|---|
C |
The class name. |
Macro used when referencing the base DataSet
class.
If the DDL is defined as follows:
the
dataset Position {
real x;
real y;
real z;
};Position
class is defined in the application as follows:
class Position :
public DATASET(Position) {
void Set( qReal x, qReal y, qReal z );
};
CONFIDENTIAL