Yingdi Yu | 06a678a | 2014-08-01 17:07:08 -0700 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2012-2014 University of California, Los Angeles |
| 4 | * |
| 5 | * This file is part of ChronoSync, synchronization library for distributed realtime |
| 6 | * applications for NDN. |
| 7 | * |
| 8 | * ChronoSync is free software: you can redistribute it and/or modify it under the terms |
| 9 | * of the GNU General Public License as published by the Free Software Foundation, either |
| 10 | * version 3 of the License, or (at your option) any later version. |
| 11 | * |
| 12 | * ChronoSync is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 13 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 | * PURPOSE. See the GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License along with |
| 17 | * ChronoSync, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * @author Yingdi Yu <yingdi@cs.ucla.edu> |
| 20 | */ |
| 21 | |
| 22 | #ifndef BOOST_HEADER_HPP |
| 23 | #define BOOST_HEADER_HPP |
| 24 | |
| 25 | // suppress Boost warnings |
| 26 | #pragma GCC system_header |
| 27 | #pragma clang system_header |
| 28 | |
| 29 | #include <boost/random.hpp> |
| 30 | |
| 31 | #include <boost/assert.hpp> |
| 32 | #include <boost/throw_exception.hpp> |
| 33 | |
| 34 | #include <boost/iterator/transform_iterator.hpp> |
| 35 | #include <boost/archive/iterators/dataflow_exception.hpp> |
| 36 | #include <boost/archive/iterators/transform_width.hpp> |
| 37 | |
| 38 | #endif // BOOST_HEADER_HPP |