TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
format.h
Go to the documentation of this file.
1 
13 #ifndef G3D_FORMAT_H
14 #define G3D_FORMAT_H
15 
16 #include "G3D/platform.h"
17 #include <string>
18 #include <stdio.h>
19 #include <cstdarg>
20 
21 namespace G3D {
22 
30 std::string __cdecl format(
31  const char* fmt
32  ...) G3D_CHECK_PRINTF_ARGS;
33 
37 std::string vformat(
38  const char* fmt,
39  va_list argPtr) G3D_CHECK_VPRINTF_ARGS;
40 
41 
42 } // namespace
43 
44 #endif
Definition: AABox.h:25
std::string __cdecl format(const char *fmt...) G3D_CHECK_PRINTF_ARGS
std::string vformat(const char *fmt, va_list argPtr) G3D_CHECK_VPRINTF_ARGS
Definition: format.cpp:122
Definition: format.h:285