Hello,

I've got a class, which reads data from a external program. It has to compare these values each time with a array of std::strings. What would be the best way to declare and compare this?

a Vector for std::string or a list. Some Boost:: library option?

Small exmaple,

Program recieves value 1990->in string -> compare with a static std::string

The static std::string array will be filled with user input from the GUI.

Thanks a lot.

NM