[8499] Add data to `spell_elixir` for absent 3.x elixirs.
[getmangos.git] / src / framework / Policies / Singleton.h
blob9502fb120b4ea6acc598e7b50460e2dfbf9389c9
1 /*
2 * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef MANGOS_SINGLETON_H
20 #define MANGOS_SINGLETON_H
22 /**
23 * @brief class Singleton
26 #include "CreationPolicy.h"
27 #include "ThreadingModel.h"
28 #include "ObjectLifeTime.h"
30 namespace MaNGOS
32 template
34 typename T,
35 class ThreadingModel = MaNGOS::SingleThreaded<T>,
36 class CreatePolicy = MaNGOS::OperatorNew<T>,
37 class LifeTimePolicy = MaNGOS::ObjectLifeTime<T>
39 class MANGOS_DLL_DECL Singleton
41 public:
42 static T& Instance();
44 protected:
45 Singleton() {};
47 private:
49 // Prohibited actions...this does not prevent hijacking.
50 Singleton(const Singleton &);
51 Singleton& operator=(const Singleton &);
53 // Singleton Helpers
54 static void DestroySingleton();
56 // data structure
57 typedef typename ThreadingModel::Lock Guard;
58 static T *si_instance;
59 static bool si_destroyed;
62 #endif