Home | History | Annotate | Download | only in utils

Lines Matching refs:Singleton

28 class Singleton
42 ~Singleton() { };
43 Singleton() { };
46 Singleton(const Singleton&);
47 Singleton& operator = (const Singleton&);
54 * (eg: <TYPE>.cpp) to create the static instance of Singleton<>'s attributes,
55 * and avoid to have a copy of them in each compilation units Singleton<TYPE>
62 template class Singleton< TYPE >; \
63 template<> Mutex Singleton< TYPE >::sLock(Mutex::PRIVATE); \
64 template<> TYPE* Singleton< TYPE >::sInstance(0);