Image

Imagejdevelop wrote in Imagecpp

static class member question

I do have this code
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");