IDL generator doesn't assign a value to a constant declarati

When generating an IDL file a constant declarations value assignment wasn't generated.
Have a look at the attachments for the declarations. The resulting code looks as follows:
Have a look at the attachments for the declarations. The resulting code looks as follows:
- Code: Select all
#ifndef OBSERVATION_DEFINITIONS_H
#define OBSERVATION_DEFINITIONS_H
module Observation {
//Definitions common to all its interfaces.
interface Definitions
{
const unsigned long FTD_OBSERVANT_ID_IDX;
const unsigned long FTD_ATTRIBUTE_NAME_IDX;
const unsigned long FTD_NEW_VALUE_IDX;
} /* Definitions */;
}; // module Observation
#endif