UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
u3d_message.hpp
1 #ifndef U3D_MESSAGE_HPP_
2 #define U3D_MESSAGE_HPP_
3 
4 #include <stdio.h>
5 #include <stdarg.h>
6 
8 #define U3D_BASE_MSG_LEN 2048
9 
12 {
13 public:
15  static void info(const char* format, ...);
16 
18  static void warning(const char* format, ...);
19 
21  static void error(const char* format, ...);
22 
24  static void debug(const char* format, ...);
25 };
26 
27 #endif //U3D_MESSAGE_HPP_
static void error(const char *format,...)
static void warning(const char *format,...)
Definition: u3d_message.hpp:11
static void info(const char *format,...)
static void debug(const char *format,...)