X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6e9c859b6c65157cf6d11a777ed1ceb9224704eb..a79a8e1cab86ccc687cfbc97b01b735acb996f16:/include/xbt/string.hpp diff --git a/include/xbt/string.hpp b/include/xbt/string.hpp index 2fcd61ae51..0c9221a542 100644 --- a/include/xbt/string.hpp +++ b/include/xbt/string.hpp @@ -11,6 +11,7 @@ #include #include +#include #if HAVE_MC @@ -298,9 +299,18 @@ typedef std::string string; #endif -std::string string_vprintf(const char *fmt, va_list ap); +/** Create a C++ string from a C-style format + * + * @ingroup XBT_str +*/ std::string string_printf(const char *fmt, ...); +/** Create a C++ string from a C-style format + * + * @ingroup XBT_str +*/ +std::string string_vprintf(const char *fmt, va_list ap); + } }