| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /** |
| * Copyright (c) 2014 University of Memphis, |
| * Regents of the University of California |
| * |
| * See COPYING for copyright and distribution information. |
| */ |
| |
| #ifndef NLSR_UTIL_BOOST_LOG_HPP |
| #define NLSR_UTIL_BOOST_LOG_HPP |
| |
| // suppress boost::log warnings |
| #pragma GCC system_header |
| #pragma clang system_header |
| |
| #include <boost/log/common.hpp> |
| #include <boost/log/expressions.hpp> |
| #include <boost/log/attributes.hpp> |
| #include <boost/log/sources/logger.hpp> |
| #include <boost/log/sinks/sync_frontend.hpp> |
| #include <boost/log/sinks/text_file_backend.hpp> |
| |
| #endif // NLSR_UTIL_BOOST_LOG_HPP |