tinySQL  0.1
A self-contained database management system
singleton.h
1 //
2 // Created by luke on 22-6-6.
3 //
4 
5 #ifndef TINYSQL_TEST_SINGLETON_H
6 #define TINYSQL_TEST_SINGLETON_H
7 
13 template <class SingletonClass>
14 class Singleton{
15 public:
16  static SingletonClass * instance(){
17  static SingletonClass instance;
18  return &instance;
19  }
20  SingletonClass* operator ->() { return instance(); }
21  const SingletonClass* operator ->() const { return instance(); }
22 private:
23  Singleton(){}
24  ~Singleton(){}
25 };
26 
27 #endif //TINYSQL_TEST_SINGLETON_H
Singleton
For factory mode design machanism, avoid repeated space allocation.
Definition: singleton.h:14