aboutsummaryrefslogtreecommitdiffhomepage
path: root/tvmet-1.7.1/include/tvmet/TvmetBase.h
blob: 262f860d461a61750674d932894eea4c23ab4bf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
 * Tiny Vector Matrix Library
 * Dense Vector Matrix Libary of Tiny size using Expression Templates
 *
 * Copyright (C) 2001 - 2003 Olaf Petzold <opetzold@users.sourceforge.net>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * $Id: TvmetBase.h,v 1.11 2004/06/10 16:36:55 opetzold Exp $
 */

#ifndef TVMET_BASE_H
#define TVMET_BASE_H

#include <iosfwd>				// io streams forward declaration
#include <typeinfo>				// rtti: used by Xpr.h level printing
#include <cmath>				// unary and binary math
#include <cstdlib>				// labs

namespace tvmet {


/**
 * \class TvmetBase TvmetBase.h "tvmet/TvmetBase.h"
 * \brief Base class
 * Used for static polymorph call of print_xpr
 */
template<class E> class TvmetBase { };


/**
 * \class IndentLevel TvmetBase.h "tvmet/TvmetBase.h"
 * \brief Prints the level indent.
 */
class IndentLevel : public TvmetBase< IndentLevel >
{
public:
  IndentLevel(int level) : m_level(level) { }

  std::ostream& print_xpr(std::ostream& os) const {
    for(int i = 0; i != m_level; ++i) os << "   ";
    return os;
  }

private:
  int 					m_level;
};


/**
 * \fn operator<<(std::ostream& os, const TvmetBase<E>& e)
 * \brief overloaded ostream operator using static polymorphic.
 * \ingroup _binary_operator
 */
template<class E>
inline
std::ostream& operator<<(std::ostream& os, const TvmetBase<E>& e) {
  static_cast<const E&>(e).print_xpr(os);
  return os;
}


/**
 * \class dispatch TvmetBase.h "tvmet/TvmetBase.h"
 * \brief Class helper to distuingish between e.g. meta
 *        and loop strategy used.
 */
template<bool> struct dispatch;

/**
 * \class dispatch<true> TvmetBase.h "tvmet/TvmetBase.h"
 * \brief specialized.
 */
template<> struct dispatch<true>  { };

/**
 * \class dispatch<false> TvmetBase.h "tvmet/TvmetBase.h"
 * \brief specialized.
 */
template<> struct dispatch<false> { };


} // namespace tvmet

#endif // TVMET_BASE_H

// Local Variables:
// mode:C++
// End: