#include "mexLog.h"#include <cstdarg>#include <cstdio>

Go to the source code of this file.
Defines | |
| #define | BUFMAXSIZE 1000 |
Functions | |
| void | mexInfo (const char *fmt,...) |
| writes an info message to mexPrintf | |
| void | mexError (const char *fmt,...) |
| writes an error message | |
| void | mexFatal (const char *fmt,...) |
| writes an error message and leaved the mex file | |
| void | mexDebug (const char *fmt,...) |
| writes a debug message | |
Definition in file mexLog.cpp.
| #define BUFMAXSIZE 1000 |
Definition at line 14 of file mexLog.cpp.
Referenced by mexDebug(), mexError(), mexFatal(), and mexInfo().
| void mexDebug | ( | const char * | fmt, | |
| ... | ||||
| ) |
| void mexError | ( | const char * | fmt, | |
| ... | ||||
| ) |
writes an error message
Definition at line 28 of file mexLog.cpp.
References BUFMAXSIZE.
Referenced by MexParams::~MexParams().
| void mexFatal | ( | const char * | fmt, | |
| ... | ||||
| ) |
writes an error message and leaved the mex file
Definition at line 39 of file mexLog.cpp.
References BUFMAXSIZE.
Referenced by MexParams::~MexParams().
| void mexInfo | ( | const char * | fmt, | |
| ... | ||||
| ) |
writes an info message to mexPrintf
Definition at line 17 of file mexLog.cpp.
References BUFMAXSIZE.
1.5.6