00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef AMGSTRINGHELPERS_H_
00011 #define AMGSTRINGHELPERS_H_
00012
00013 #include "GeoPrimitives/GeoPrimitives.h"
00014
00015 namespace Amg{
00016
00017
00021 template<class T>
00022 std::string AsString(const T& m) {
00023 std::stringstream tmp;
00024 tmp << m;
00025 return tmp.str();
00026 }
00027
00028
00029
00030 }
00031
00032 #endif