Fixed whitespace in all files (no tabs)
[senf.git] / Utils / SafeBool.cci
1 // $Id$
2 //
3 // Copyright (C) 2006
4
5 // Definition of inline non-template functions
6
7 // Custom includes
8
9 #define prefix_ inline
10 ///////////////////////////////cci.p///////////////////////////////////////
11
12 prefix_ void senf::SafeBoolBase::this_type_does_not_support_comparisons()
13     const
14 {}
15
16 prefix_ senf::SafeBoolBase::SafeBoolBase()
17 {}
18
19 prefix_ senf::SafeBoolBase::SafeBoolBase(const SafeBoolBase&)
20 {}
21
22 prefix_ senf::SafeBoolBase& senf::SafeBoolBase::operator=(const SafeBoolBase&)
23 {
24     return *this;
25 }
26
27 prefix_ senf::SafeBoolBase::~SafeBoolBase()
28 {}
29
30 ///////////////////////////////cci.e///////////////////////////////////////
31 #undef prefix_
32
33 \f
34 // Local Variables:
35 // mode: c++
36 // fill-column: 100
37 // c-file-style: "senf"
38 // indent-tabs-mode: nil
39 // ispell-local-dictionary: "american"
40 // End: