Would it be possible to initialize a vector array of strings?
for example:
static std::vector<std::string> v; //declared as a class member
I used static
just to initialize and fill it with strings. Or should i just fill it in the constructor if it can't be initialized like we do with regular arrays.