Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/core/src/orxonox/core/IdentifierDistributor.h @ 813

Last change on this file since 813 was 813, checked in by landauf, 16 years ago
  • removed IdentifierList and replaced it by a std::list
  • changed several doxygen tags
File size: 2.1 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *
4 *
5 *   License notice:
6 *
7 *   This program is free software; you can redistribute it and/or
8 *   modify it under the terms of the GNU General Public License
9 *   as published by the Free Software Foundation; either version 2
10 *   of the License, or (at your option) any later version.
11 *
12 *   This program is distributed in the hope that it will be useful,
13 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 *   GNU General Public License for more details.
16 *
17 *   You should have received a copy of the GNU General Public License
18 *   along with this program; if not, write to the Free Software
19 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 *
21 *   Author:
22 *      Fabian 'x3n' Landau
23 *   Co-authors:
24 *      ...
25 *
26 */
27
28/**
29    @file IdentifierDistributor.h
30    @brief Definition of the IdentifierDistributor class
31
32    The IdentifierDistributor makes sure that only one instance of ClassIdentifier for each
33    template parameter T exists. All Identifiers are stored in a map with their name.
34    IdentifierDistributor is a singleton class, it can't be created or deleted directly.
35*/
36
37#ifndef _IdentifierDistributor_H__
38#define _IdentifierDistributor_H__
39
40#include <map>
41
42#include "CorePrereqs.h"
43
44namespace orxonox
45{
46    //! The Identifier Distributor stores all Identifiers and makes sure there are no ambiguities.
47    class _CoreExport IdentifierDistributor
48    {
49        public:
50            static Identifier* getIdentifier(const std::string& name, Identifier* proposal);
51
52        private:
53            IdentifierDistributor() {};                                         // Don't create
54            IdentifierDistributor(const IdentifierDistributor& distributor) {}  // Don't copy
55            ~IdentifierDistributor() {}                                         // Don't delete
56
57            std::map<std::string, Identifier*> identifiers_;    //!< The map to store all Identifiers.
58    };
59}
60
61#endif /* _IdentifierDistributor_H__ */
Note: See TracBrowser for help on using the repository browser.