Hugintrunk  0.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Macros
Tracer.h File Reference
#include <iostream>
Include dependency graph for Tracer.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define TRACE_INFO(x)   { std::ostringstream buf; buf << x; std::cout << buf.str(); std::cout.flush();}
 
#define TRACE_DEBUG(x)
 
#define TRACE_ERROR(x)   { std::ostringstream buf; buf << x; std::cerr << buf.str(); std::cerr.flush(); }
 

Macro Definition Documentation

#define TRACE_DEBUG (   x)

Definition at line 31 of file Tracer.h.

#define TRACE_ERROR (   x)    { std::ostringstream buf; buf << x; std::cerr << buf.str(); std::cerr.flush(); }

Definition at line 34 of file Tracer.h.

#define TRACE_INFO (   x)    { std::ostringstream buf; buf << x; std::cout << buf.str(); std::cout.flush();}