static class member question
I do have this code
Is it possible to initialize the names member with values like this?
names.Add("1");
names.Add("2");
names.Add("3");
class something {
static wxArrayString names;
public:
something()
{}
};
Is it possible to initialize the names member with values like this?
names.Add("1");
names.Add("2");
names.Add("3");
