Hello!
I'm reading a dds log file using sqlite and having troubles to retrieve the original integer values that were specified for enumerations in my *.idl file.
For example:
enum tTest
{
  Value0,
  Value1, 
  Value2
}
struct tMyData
{
  tTest testData;
}; 
When I read testData, I want to get the integer values 0,1 or 2. But instead the json string contains "Value0", "Value1" or "Value2". Is there some setting that I miss during the recording?
Any help is highly appreciated!
/David
 
      