Hi all,
I want to initialize a static stl::list of strings with some predifined string values(hardcoded).
I declared the list in my class like this:
static const list<string> my_list;
(I want to do something like static const list<string> my_list("VAL1","VAL2","VAL3","VAL4") but this is not...