67984ee7a4add6658b8af9610efd231628f3e60f
[senf.git] / senf / Utils / auto_unit_test.ih
1 // $Id$
2 //
3 // Copyright (C) 2009
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.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 /** \file
24     \brief auto_unit_test internal header */
25
26 #ifndef IH_SENF_senf_Utils_auto_unit_test_
27 #define IH_SENF_senf_Utils_auto_unit_test_ 1
28
29 // Custom includes
30 #include <iterator>
31 #include <boost/iterator/iterator_adaptor.hpp>
32
33 //-/////////////////////////////////////////////////////////////////////////////////////////////////
34
35 namespace senf {
36 namespace test {
37 namespace detail {
38
39     template <class Type, class Iterator>
40     struct ConvertingIterator
41         : public boost::iterator_adaptor<
42             ConvertingIterator<Type, Iterator>, Iterator, Type, boost::use_default, Type>
43     {
44         typedef boost::iterator_adaptor<
45             ConvertingIterator<Type, Iterator>, Iterator, Type, boost::use_default, Type> Base;
46         ConvertingIterator(Iterator i) : Base (i) {}
47     };
48
49     template <class Iterator, class vt = typename std::iterator_traits<Iterator>::value_type>
50     struct NoCharIterator
51     { typedef Iterator type; };
52
53     template <class Iterator>
54     struct NoCharIterator<Iterator, char>
55     { typedef ConvertingIterator<int,Iterator> type; };
56
57     template <class Iterator>
58     struct NoCharIterator<Iterator, signed char>
59     { typedef ConvertingIterator<int,Iterator> type; };
60
61     template <class Iterator>
62     struct NoCharIterator<Iterator, unsigned char>
63     { typedef ConvertingIterator<unsigned,Iterator> type; };
64
65 }}}
66
67 //-/////////////////////////////////////////////////////////////////////////////////////////////////
68 #endif
69
70 \f
71 // Local Variables:
72 // mode: c++
73 // fill-column: 100
74 // comment-column: 40
75 // c-file-style: "senf"
76 // indent-tabs-mode: nil
77 // ispell-local-dictionary: "american"
78 // compile-command: "scons -u test"
79 // End: