blob: 19f997aff0c257180d21bae2e6d74a948bee1240 [file] [log] [blame]
#ifndef GLOBAL_CTOR_H
#define GLOBAL_CTOR_H
class GlobalCtor
{
private:
int Value;
public:
GlobalCtor();
bool IsInitialized() const
{
return (Value == 42);
}
};
#endif // GLOBAL_CTOR_H