[7297] Fixed profession spells sorting in trainer spell list at client.
[getmangos.git] / src / game / MapRefManager.h
blob02f8b2ea465e9c9950c167177e26dc52b9a90021
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 _MAPREFMANAGER
20 #define _MAPREFMANAGER
22 #include "Utilities/LinkedReference/RefManager.h"
24 class MapReference;
26 class MapRefManager : public RefManager<Map, Player>
28 public:
29 typedef LinkedListHead::Iterator< MapReference > iterator;
30 typedef LinkedListHead::Iterator< MapReference const > const_iterator;
32 MapReference* getFirst() { return (MapReference*)RefManager<Map, Player>::getFirst(); }
33 MapReference const* getFirst() const { return (MapReference const*)RefManager<Map, Player>::getFirst(); }
34 MapReference* getLast() { return (MapReference*)RefManager<Map, Player>::getLast(); }
35 MapReference const* getLast() const { return (MapReference const*)RefManager<Map, Player>::getLast(); }
37 iterator begin() { return iterator(getFirst()); }
38 iterator end() { return iterator(NULL); }
39 iterator rbegin() { return iterator(getLast()); }
40 iterator rend() { return iterator(NULL); }
41 const_iterator begin() const { return const_iterator(getFirst()); }
42 const_iterator end() const { return const_iterator(NULL); }
44 #endif