00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef TVMET_BASE_H
00025 #define TVMET_BASE_H
00026
00027 #include <iosfwd>
00028 #include <typeinfo>
00029 #include <cmath>
00030 #include <cstdlib>
00031
00032 #if defined(WIN32) && defined(_MSC_VER) && (_MSC_VER == 1310)
00033 #include <string>
00034 #endif
00035
00036 #if defined(__APPLE_CC__)
00037
00038 extern "C" int isnan(double);
00039 extern "C" int isinf(double);
00040 #endif
00041
00042 namespace tvmet {
00043
00044
00050 template<class E> class TvmetBase { };
00051
00052
00057 class IndentLevel : public TvmetBase< IndentLevel >
00058 {
00059 public:
00060 IndentLevel(std::size_t level) : m_level(level) { }
00061
00062 std::ostream& print_xpr(std::ostream& os) const {
00063 for(std::size_t i = 0; i != m_level; ++i) os << " ";
00064 return os;
00065 }
00066
00067 private:
00068 std::size_t m_level;
00069 };
00070
00071
00077 template<class E>
00078 inline
00079 std::ostream& operator<<(std::ostream& os, const TvmetBase<E>& e) {
00080 static_cast<const E&>(e).print_xpr(os);
00081 return os;
00082 }
00083
00084
00090 template<bool> struct dispatch;
00091
00096 template<> struct dispatch<true> { };
00097
00102 template<> struct dispatch<false> { };
00103
00104
00105 }
00106
00107 #endif // TVMET_BASE_H
00108
00109
00110
00111
00112