// -*- c++ -*- #pragma once #ifndef __XOT_STRING_H__ #define __XOT_STRING_H__ #include #include namespace Xot { typedef std::string String; String stringf (const char* format, ...); String stringf (const char* format, va_list args); template String to_s (const T& val); }// Xot #endif//EOH