DoxyBugs  1
Singleton.h
1 
2 
4 namespace ns
5 {
7  template <typename T>
8  struct Singleton
9  {
11  T& instance();
12 
13 
14  };
15 
16 }