fix missing header issue in fairmq/logger

This commit is contained in:
winckler
2015-09-24 11:01:49 +02:00
committed by Mohammad Al-Turany
parent 5212dd4ce1
commit 96cd2afac7
4 changed files with 172 additions and 3 deletions

View File

@@ -15,8 +15,13 @@
#ifndef FAIRMQLOGGER_H_
#define FAIRMQLOGGER_H_
#include "logger/logger.h"
#include <boost/version.hpp>
#if BOOST_VERSION < 105600
#include "logger/logger_oldboost_version.h"
#else
#include "logger/logger.h"
#endif
typedef unsigned long long timestamp_t;
timestamp_t get_timestamp();