git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@129 270642c3-0616-0410...
[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 satcom {
36 namespace lib {
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 std::type_info const & id() = 0;
72             virtual Value * clone() = 0;
73         };
74
75         template <class Type>
76         struct ValueImpl : public Value {
77             virtual std::type_info const & id();
78             virtual Value * clone();
79         };
80
81         boost::scoped_ptr<Value> value_;
82
83         template <class Type> friend TypeIdValue const typeIdValue();
84     };
85
86     TypeIdValue const typeIdValue();
87     
88     template <class Type>
89     TypeIdValue const typeIdValue();
90     
91 }}
92
93 ///////////////////////////////hh.e////////////////////////////////////////
94 #include "typeidvalue.cci"
95 //#include "typeidvalue.ct"
96 #include "typeidvalue.cti"
97 #endif
98
99 \f
100 // Local Variables:
101 // mode: c++
102 // c-file-style: "satcom"
103 // End: