Hi,
I am trying to change the default CPP behavior of rtiddsgen for:
file.idl: const string str_name = "my string";
The default is to create the following code in the header file:
file.h: static const DDS_Char * str_name= "my string";
But this creates a new static string in every object the header file is included and also gives warnings in every object that it's not used.