[source lang="cpp"]class MyStaticClass{public:static int myInt;static void MyFunc();};[/source]
There are no static constructors though. So you have to take care of that some where.
Because there are no static ctor, you maybe just use a singleton.