00001
00002
00011 #ifndef CXXUTILS_STRFORMAT_H
00012 #define CXXUTILS_STRFORMAT_H 1
00013
00014
00015 #include <string>
00016
00017 namespace CxxUtils {
00018
00021 std::string strformat(const char* fmt, ...)
00022 #ifdef __GNUC__
00023 __attribute__ ((format (printf, 1, 2)))
00024 #endif
00025 ;
00026
00027 }
00028
00029 #endif // not CXXUTILS_STRFORMAT_H