Singleton.h
上传用户:zhoushen
上传日期:2022-06-15
资源大小:84k
文件大小:0k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. //
  2. // Singleton.h
  3. //
  4. /////////////////////////////////////////////////////////////////////////////
  5. #if !defined(SINGLETON_H)
  6. #define SINGLETON_H
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif 
  10. template <typename Obj>
  11. class SingletonObj 
  12. {
  13.      Obj m_Obj;
  14. public:
  15.     SingletonObj() {}  
  16. virtual ~SingletonObj() {}
  17. Obj& operator()() { return m_Obj; }
  18. };
  19. #endif