Updated Copyright year to 2013
[getmangos.git] / src / game / GuildMgr.h
blob61cf35378a8c8f4a467832cb93fe84171d527b5d
1 /*
2 * Copyright (C) 2005-2013 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 _GUILDMGR_H
20 #define _GUILDMGR_H
22 #include "Common.h"
23 #include "Policies/Singleton.h"
25 class Guild;
26 class ObjectGuid;
28 class GuildMgr
30 typedef UNORDERED_MAP<uint32, Guild*> GuildMap;
32 GuildMap m_GuildMap;
33 public:
34 GuildMgr();
35 ~GuildMgr();
37 void AddGuild(Guild* guild);
38 void RemoveGuild(uint32 guildId);
39 void RemoveGuild(ObjectGuid guildGuid);
41 Guild* GetGuildById(uint32 guildId) const;
42 Guild* GetGuildByGuid(ObjectGuid guildGuid) const;
43 Guild* GetGuildByName(std::string const& name) const;
44 Guild* GetGuildByLeader(ObjectGuid const& guid) const;
45 std::string GetGuildNameById(uint32 guildId) const;
46 std::string GetGuildNameByGuid(ObjectGuid guildGuid) const;
48 void LoadGuilds();
51 #define sGuildMgr MaNGOS::Singleton<GuildMgr>::Instance()
53 #endif // _GUILDMGR_H