Fixed whitespace in all files (no tabs)
[senf.git] / Packets / typeidvalue.hh
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 #ifndef HH_typeidvalue_
24 #define HH_typeidvalue_ 1
25
26 // Custom includes
27 #include <typeinfo>
28 #include <string>
29 #include <boost/scoped_ptr.hpp>
30 #include <boost/operators.hpp>
31
32 //#include "typeidvalue.mpp"
33 ///////////////////////////////hh.p////////////////////////////////////////
34
35 namespace senf {
36
37
38     /** \brief Wrapper to use types as key's in a map
39       */
40     class TypeIdValue : public boost::totally_ordered<TypeIdValue>
41     {
42     public:
43         ///////////////////////////////////////////////////////////////////////////
44         ///\name Structors and default members
45         ///@{
46
47         // my default constructor
48         // my copy constructor
49         // my copy assignment
50         // default destructor
51         // no conversion constructors
52
53         TypeIdValue();
54         TypeIdValue(TypeIdValue const & other);
55         TypeIdValue const & operator=(TypeIdValue const & other);
56
57         ///@}
58         ///////////////////////////////////////////////////////////////////////////
59
60         bool operator==(TypeIdValue const & other) const;
61         bool operator<(TypeIdValue const & other) const;
62
63         std::string name() const;
64
65     protected:
66
67     private:
68         template <class Type> TypeIdValue(Type *);
69
70         struct Value {
71             virtual ~Value() {}
72             virtual std::type_info const & id() = 0;
73             virtual Value * clone() = 0;
74         };
75
76         template <class Type>
77         struct ValueImpl : public Value {
78             virtual std::type_info const & id();
79             virtual Value * clone();
80         };
81
82         boost::scoped_ptr<Value> value_;
83
84         template <class Type> friend TypeIdValue const typeIdValue();
85     };
86
87     TypeIdValue const typeIdValue();
88
89     template <class Type>
90     TypeIdValue const typeIdValue();
91
92 }
93
94 ///////////////////////////////hh.e////////////////////////////////////////
95 #include "typeidvalue.cci"
96 //#include "typeidvalue.ct"
97 #include "typeidvalue.cti"
98 #endif
99
100 \f
101 // Local Variables:
102 // mode: c++
103 // fill-column: 100
104 // c-file-style: "senf"
105 // indent-tabs-mode: nil
106 // ispell-local-dictionary: "american"
107 // End: