GNU Octave  8.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
Logger.cc File Reference
#include <cstdio>
#include <QMutex>
#include <QMutexLocker>
#include <QProcessEnvironment>
#include "Logger.h"
Include dependency graph for Logger.cc:

Go to the source code of this file.

Macros

#define STATIC_LOGGER(fcn)
 

Macro Definition Documentation

◆ STATIC_LOGGER

#define STATIC_LOGGER (   fcn)
Value:
void Logger::fcn (const char *fmt, ...) \
{ \
QMutexLocker lock (s_mutex); \
va_list vl; \
va_start (vl, fmt); \
instance ()->fcn ## V (fmt, vl); \
va_end (vl); \
}
F77_RET_T const F77_INT const F77_INT const F77_INT const F77_DBLE const F77_DBLE F77_INT F77_DBLE * V

Definition at line 67 of file Logger.cc.