I am generating .idl files from a data model, and I am running into an issue using elements with the <
****common.idl***
module Constants {
const long THING = 255;
const short ANOTHER_THING = 2;
};
***usage.idl***
#include common.idl
module usage {
struct Struct {
Constants value;
};
The expected output would be Common::Constants value, but that's not what I am seeing. What am I missing?
