Singleton.h
上传用户:jxpjxmjjw
上传日期:2009-12-07
资源大小:5877k
文件大小:2k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. // Copyright (C) 2004 Team Python
  2. //  
  3. // This program is free software; you can redistribute it and/or modify
  4. // it under the terms of the GNU General Public License as published by
  5. // the Free Software Foundation; either version 2 of the License, or
  6. // (at your option) any later version.
  7. // 
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. // GNU General Public License for more details.
  12. // 
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software 
  15. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  16. #ifndef WOWPYTHONSERVER_SINGLETON_H
  17. #define WOWPYTHONSERVER_SINGLETON_H
  18. #include "Errors.h"
  19. /// Should be placed in the appropriate .cpp file somewhere
  20. #define initialiseSingleton( type ) 
  21.   template < > type * Singleton < type > :: mSingleton = 0
  22. /// To be used as a replacement for initialiseSingleton( )
  23. ///  Creates a file-scoped Singleton object, to be retrieved with getSingleton
  24. #define createFileSingleton( type ) 
  25.   initialiseSingleton( type ); 
  26.   type the##type
  27. template < class type > class Singleton {
  28. public:
  29.   /// Constructor
  30.   Singleton( ) {
  31.     /// If you hit this assert, this singleton already exists -- you can't create another one!
  32.     WPAssert( mSingleton == 0 ); 
  33.     mSingleton = ( type * ) this;
  34.   }
  35.   /// Destructor
  36.   ~Singleton( ) { }
  37.   /// Retrieve the singleton object, if you hit this assert this singleton object doesn't exist yet
  38.   static type & getSingleton( ) { WPAssert( mSingleton ); return *mSingleton; }
  39.   /// Retrieve a pointer to the singleton object
  40.   static type * getSingletonPtr( ) { return mSingleton; }
  41. protected:
  42.   /// Singleton pointer, must be set to 0 prior to creating the object
  43.   static type * mSingleton;
  44. };
  45. #endif