MlpLog.hpp File Reference

MlpLog header file. More...

#include <iostream>
Include dependency graph for MlpLog.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  MlpLog

Defines

#define MLP_LOG_DEBUG(info)
#define MLP_LOG_INFO(info)
#define MLP_LOG_WARNING(info)
#define MLP_LOG_ERROR(info)

Detailed Description

MlpLog header file.

This file contains MlpLog class declaration.

Author:
Petr Vláčil

Define Documentation

#define MLP_LOG_DEBUG ( info   ) 
Value:
do \
                        { if (MlpLog::LOG_LEVEL > 6 ) {\
                            std::cerr << "MLP_LIB_DEBUG: " \
                            << __FILE__ << " line: " << __LINE__ \
                            << " " << info << std::endl; \
                          }\
                        } while (false)
#define MLP_LOG_ERROR ( info   ) 
Value:
do \
                        { if (MlpLog::LOG_LEVEL > 2 ) {\
                            std::cerr << "MLP_LIB_ERROR: " \
                            << __FILE__ << " line: " << __LINE__ \
                            << " " << info << std::endl; \
                          }\
                        } while (false)
#define MLP_LOG_INFO ( info   ) 
Value:
do \
                        { if (MlpLog::LOG_LEVEL > 4 ) {\
                            std::cerr << "MLP_LIB_INFO: " \
                            << __FILE__ << " line: " << __LINE__ \
                            << " " << info << std::endl; \
                          }\
                        } while (false)
#define MLP_LOG_WARNING ( info   ) 
Value:
do \
                        { if (MlpLog::LOG_LEVEL > 2 ) {\
                            std::cerr << "MLP_LIB_WARNING: " \
                            << __FILE__ << " line: " << __LINE__ \
                            << " " << info << std::endl; \
                          }\
                        } while (false)

Generated on Tue Jan 19 10:25:56 2010 for "MLP Library" by  doxygen 1.6.1