Now ATIDLAS is standalone. Everything dynamic....

This commit is contained in:
Philippe Tillet
2015-01-12 13:20:53 -05:00
parent a6de4c96be
commit 69311b7982
3845 changed files with 646893 additions and 6620 deletions

View File

@@ -0,0 +1,22 @@
#ifndef ATIDLAS_TOOLS_TO_STRING_HPP
#define ATIDLAS_TOOLS_TO_STRING_HPP
#include <string>
namespace atidlas
{
namespace tools
{
template<class T>
inline std::string to_string ( T const t )
{
std::stringstream ss;
ss << t;
return ss.str();
}
}
}
#endif