switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Utils / pimpl_ptr.hh
1 // $Id$
2 //
3 // Copyright (C) 2010
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief pimpl_ptr public header */
30
31 #ifndef HH_SENF_senf_Utils_pimpl_ptr_
32 #define HH_SENF_senf_Utils_pimpl_ptr_ 1
33
34 // Custom includes
35 #include <algorithm>
36 #include <boost/ptr_container/clone_allocator.hpp>
37
38 //#include "pimpl_ptr.mpp"
39 //-/////////////////////////////////////////////////////////////////////////////////////////////////
40
41 namespace senf
42 {
43
44     template<typename T, class CloneAllocator=boost::heap_clone_allocator>
45     class pimpl_ptr
46     {
47         typedef void (*Deleter)(T* p);
48         typedef T* (*Copier)(const T* p);
49
50     public:
51         explicit pimpl_ptr(T* pointee);
52         pimpl_ptr(const pimpl_ptr & rhs);
53         ~pimpl_ptr() throw();
54
55         const T* get() const throw();
56         T* get() throw();
57
58         const T* operator->() const throw();
59         T* operator->() throw();
60
61         const T& operator*() const throw();
62         T& operator*() throw();
63
64         void swap(pimpl_ptr& with) throw();
65
66         pimpl_ptr & operator=(const pimpl_ptr & rhs);
67
68     private:
69         static Copier doCopy_;
70         static Deleter doDelete_;
71         T* p;
72
73         static void myDeleteFn(T* p);
74         static T* myCopyFn(const T* p);
75     };
76
77 }
78
79 namespace std
80 {
81     template<class T, class CloneAllocator>
82     void swap(senf::pimpl_ptr<T,CloneAllocator>& lhs, senf::pimpl_ptr<T,CloneAllocator>& rhs)
83         throw();
84 }
85
86 //-/////////////////////////////////////////////////////////////////////////////////////////////////
87 //#include "pimpl_ptr.cci"
88 //#include "pimpl_ptr.ct"
89 #include "pimpl_ptr.cti"
90 #endif
91
92 \f
93 // Local Variables:
94 // mode: c++
95 // fill-column: 100
96 // comment-column: 40
97 // c-file-style: "senf"
98 // indent-tabs-mode: nil
99 // ispell-local-dictionary: "american"
100 // compile-command: "scons -u test"
101 // End: