~widelands-dev/widelands/trunk

« back to all changes in this revision

Viewing changes to src/singleton.h

  • Committer: sirver
  • Date: 2002-02-05 20:54:08 UTC
  • Revision ID: git-v1:df384fd3a5e53be1f37803d1c0381fa993844bf5
Initial revision


git-svn-id: https://widelands.svn.sourceforge.net/svnroot/widelands/trunk@2 37b2a8de-5219-0410-9f54-a31bc463ab9c

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2001 by Holger Rapp 
 
3
 * 
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 * 
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 * 
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef __S__SINGLETON_H
 
21
#define __S__SINGLETON_H
 
22
 
 
23
/* Referenz: Game Programming Gems I, P. 38 
 
24
 * Excellent code!!
 
25
 */
 
26
 
 
27
#include <cassert>
 
28
 
 
29
template <typename T> class Singleton {
 
30
                  static T* ms;
 
31
 
 
32
                  public:
 
33
                  Singleton(void) { 
 
34
                                         assert (!ms) ; 
 
35
                                         int offset = (int)(T*)1 - (int)(Singleton <T>*)(T*)1; 
 
36
                                         ms=(T*)((int)this+offset); 
 
37
                  }
 
38
                  ~Singleton(void) { assert(ms); ms=0; }
 
39
                  static inline T& get_singleton(void) { assert (ms); return *ms; }
 
40
                  static inline T* get_ptsingleton(void) { assert(ms); return ms; }
 
41
};
 
42
 
 
43
template <typename T> T* Singleton <T>::ms=0;
 
44
 
 
45
 
 
46
#endif