COVISE Core
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
coLog.h
Go to the documentation of this file.
1 /* This file is part of COVISE.
2 
3  You can use it under the terms of the GNU Lesser General Public License
4  version 2.1 or later, see lgpl-2.1.txt.
5 
6  * License: LGPL 2+ */
7 
8 #ifndef CO_LOG_H
9 #define CO_LOG_H
10 
11 #include "coExport.h"
12 
13 /*
14  $Log: covise_global.h,v $
15  * Revision 1.1 1993/09/25 20:45:10 zrhk0125
16  * Initial revision
17  *
18  */
19 
20 namespace covise
21 {
22 
23 UTILEXPORT void print_exit(int, const char *, int);
24 UTILEXPORT void print_error(int line, const char *file, const char *fmt, ...)
25 #ifdef __GNUC__
26  __attribute__((format(printf, 3, 4)))
27 #endif
28  ;
29 
30 UTILEXPORT void print_comment(int line, const char *file, const char *fmt, ...)
31 #ifdef __GNUC__
32  __attribute__((format(printf, 3, 4)))
33 #endif
34  ;
35 UTILEXPORT void print_time(const char *);
36 }
37 #endif
#define UTILEXPORT
Definition: coExport.h:194
GLint GLint GLsizei GLsizei GLsizei GLint GLenum format
Definition: khronos-glext.h:6344
void print_time(const char *comment)
Definition: coLog.cpp:156
void print_exit(int line, const char *filename, int how)
Definition: coLog.cpp:69
void print_error(int line, const char *filename, const char *fmt,...)
Definition: coLog.cpp:132
void print_comment(int line, const char *filename, const char *fmt,...)
Definition: coLog.cpp:25