I wonder if there is the \"nicer\" way of initialising a static vector than below?
class Foo { static std::vector MyVector; Foo() {
With C++11:
std::vector Foo::MyVector = {4, 17, 20};