I have some code given to me by another person in which we have a structure
struct Pair { string s1; string s2; bool equivalent; };
void staticdata() { Pair temp[] = { {"string","string2",true}, {"string","string3",true}, {"string","string4",false}, {"string","string7",false}, {"string3","string8",false} }; PairID.assign(temp,temp+5); }