Yingdi Yu | 40cd1c3 | 2014-04-17 15:02:17 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014 University of Memphis, |
| 4 | * Regents of the University of California |
| 5 | * |
| 6 | * See COPYING for copyright and distribution information. |
| 7 | */ |
| 8 | |
| 9 | #ifndef NLSR_UTIL_BOOST_LOG_HPP |
| 10 | #define NLSR_UTIL_BOOST_LOG_HPP |
| 11 | |
| 12 | // suppress boost::log warnings |
| 13 | #pragma GCC system_header |
| 14 | #pragma clang system_header |
| 15 | |
| 16 | #include <boost/log/common.hpp> |
| 17 | #include <boost/log/expressions.hpp> |
| 18 | #include <boost/log/attributes.hpp> |
| 19 | #include <boost/log/sources/logger.hpp> |
| 20 | #include <boost/log/sinks/sync_frontend.hpp> |
| 21 | #include <boost/log/sinks/text_file_backend.hpp> |
| 22 | |
| 23 | #endif // NLSR_UTIL_BOOST_LOG_HPP |