Blame view

src/Info/InfoLogger.hh 448 Bytes
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * InfoLogger.hh
 *
 *  Created on: 8 oct. 2014
 *      Author: AKKA
 */

#ifndef INFOLOGGER_HH_
#define INFOLOGGER_HH_

#include "log4cxx/logger.h"

#include <AMDA_exception.hh>

namespace AMDA {
namespace Info {

using AMDA::ex_msg;

extern log4cxx::LoggerPtr gLogger;

/**
 * Exception specific for this module
 */
struct exception: virtual AMDA::AMDA_exception { };

} /* namespace Info */
} /* namespace AMDA */
#endif /* INFOLOGGER_HH_ */