/* * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef _REFMANAGER_H #define _REFMANAGER_H #include "Dynamic/LinkedList.h" #include "Dynamic/LinkedReference/Reference.h" template class RefManager : public LinkedListHead { public: typedef LinkedListHead::Iterator iterator; typedef LinkedListHead::Iterator const_iterator; RefManager() { } ReferenceType* front() { return front_impl(); } ReferenceType const* front() const { return front_impl(); } iterator begin() { return begin_impl(); } iterator end() { return end_impl(); } const_iterator begin() const { return begin_impl(); } const_iterator end() const { return end_impl(); } virtual ~RefManager() { clearReferences(); } void clearReferences() { while (!empty()) front()->invalidate(); } }; #endif