I wonder if there is the \"nicer\" way of initialising a static vector than below?
class Foo { static std::vector MyVector; Foo() {
How about initializing using a static object. In its constuctor it could call a static function in the object to do the initalization.