i have configuration that i need to set into some kind of container i try to set into std::vector but im getting compilation errors in both ways:
std::vector<std::string> ConfigVec= new std::vector<std::string>();
ConfigVec->at(0).append("00000\
11111\
00000");
ConfigVec->at(1) = "11111\
00000\
00000";
what is the shortst way to do that without to many std::string declarations