DATASET Macro

Syntax

#define DATASET(C) _DS_##C

Parameters

Name Description
C The class name.

Description

Macro used when referencing the base DataSet class.

If the DDL is defined as follows:
dataset Position {
real x;
real y;
real z;
};

the Position class is defined in the application as follows:

class Position : public DATASET(Position) {
void Set( qReal x, qReal y, qReal z );
};

Revision History

2012/08/06
Initial version.

CONFIDENTIAL