5 #ifndef TINYSQL_TEST_SINGLETON_H
6 #define TINYSQL_TEST_SINGLETON_H
13 template <
class SingletonClass>
16 static SingletonClass * instance(){
17 static SingletonClass instance;
20 SingletonClass* operator ->() {
return instance(); }
21 const SingletonClass* operator ->()
const {
return instance(); }
27 #endif //TINYSQL_TEST_SINGLETON_H