Blame view

src/expressionParser/ParserLogger.hh 461 Bytes
7e9d20f7   Benjamin Renard   Add parser to loa...
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
/*
 * ParserLogger.hh
 *
 *  Created on: 18 mar. 2019
 *      Author: AKKA
 */

#ifndef PARSERLOGGER_HH_
#define PARSERLOGGER_HH_

#include "log4cxx/logger.h"

#include <AMDA_exception.hh>

namespace AMDA {
namespace parser {

using AMDA::ex_msg;

extern log4cxx::LoggerPtr gLogger;

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

} /* namespace parser */
} /* namespace AMDA */
#endif /* PARSERLOGGER_HH_ */