blob: 934eb8f43ff00e92294dff09f6c1be88d083b5de [file] [log] [blame]
#ifndef _lib_static_init_h
#define _lib_static_init_h
class Foo {
private:
int value;
static int counter;
public:
virtual int getValue();
Foo();
virtual ~Foo();
};
Foo::~Foo()
{
}
extern Foo theFoo;
#endif /* _lib_static_init_h */