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

Go to the source code of this file.

Namespaces

 QtHandles
 

Macros

#define STATIC_LOGGER(fun)
 

Macro Definition Documentation

◆ STATIC_LOGGER

#define STATIC_LOGGER (   fun)
Value:
void Logger::fun (const char *fmt, ...) \
{ \
QMutexLocker lock (s_mutex); \
va_list vl; \
va_start (vl, fmt); \
instance ()->fun ## 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 65 of file Logger.cc.