Anyone here who can help me on urgent basis,i shall be very very thankful to him/her, I am in a big trouble due to this kindly help me
i want to store "Configurations" data into vector result.
where
class myclass{
string name;
string def;
string type;
string validation;
};
and my Json data is in nlohmann::Json object "Jdata" is as follows
{
"Configuration":[
{
"Name":"FirstName",
"Def":"DB('F_NAME')",
"Type":"String",
"Validation":""
},
{
"Name":"Age",
"Def":"RANGE(MIN,MAX)",
"Type":"Integar",
"Validation":""
},
{
"Name":"DAY",
"Def":"ENUM('MON','TUE','WED','THU','FRI','SAT','SUN')",
"Type":"String",
"Validation":""
}
],
"Input Configuration":[{"Name":"Fields"},{"Name":"Options"}]
}
Anyone here who can help me on urgent basis,i shall be very very thankful to him/her, I am in a big trouble due to this kindly help me
i want to store "Configurations" data into vector result.
where
and my Json data is in nlohmann::Json object "Jdata" is as follows