Displaying 1 result from an estimated 1 matches for "schperform".
2018 Feb 28
0
LLVM map to specific data model?
...type;
string name;
int index;
DataSchema* children = nullptr;
};
struct DataSchema
{
vector<DataProperty> properties;
};
//------------------------------
// Construct the schema
//------------------------------
DataSchema schPerformance;
schPerformance.push_back( DataProperty {DPT_DOUBLE, "speed", 0} );
DataSchema schPerson;
schPerson.push_back( DataProperty {DPT_INT, "age", 0} );
schPerson.push_back( DataProperty {DPT_CHILDREN, "result", 1,
schPerformance} );
//---...