ultimatepp/uppsrc/plugin/Eigen/ToStringPlugin.h
cxl ac593d6932 plugin/Eigen moved to uppsrc
git-svn-id: svn://ultimatepp.org/upp/trunk@5632 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2012-12-08 19:08:21 +00:00

10 lines
171 B
C++

#ifndef _Eigen_UppMatrixPlugin_h_
#define _Eigen_UppMatrixPlugin_h_
UPP::String ToString() const{
std::stringstream s;
s << *this;
return s.str();
}
#endif