GNU Octave  4.0.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Namespaces | Macros
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

#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 octave_idx_type const octave_idx_type const octave_idx_type const double const double octave_idx_type double * V
Definition: CmplxGEPBAL.cc:49

Definition at line 66 of file Logger.cc.