The compiler is now a Singleton
[ozulis.git] / src / core / singleton.hxx
blobeaf612abb20f3bc1c7f70faff535db058e207403
1 namespace core
3 template <typename T>
4 inline T&
5 Singleton<T>::instance()
7 static T * instance_ = new T;
9 return *instance_;