Vince Lehman | 0a7da61 | 2014-10-29 14:39:29 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Nick Gordon | c6a8522 | 2017-01-03 16:54:34 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, The University of Memphis, |
Nick Gordon | f8b5bcd | 2016-08-11 15:06:50 -0500 | [diff] [blame] | 4 | * Regents of the University of California |
Vince Lehman | 0a7da61 | 2014-10-29 14:39:29 -0500 | [diff] [blame] | 5 | * |
| 6 | * This file is part of NLSR (Named-data Link State Routing). |
| 7 | * See AUTHORS.md for complete list of NLSR authors and contributors. |
| 8 | * |
| 9 | * NLSR is free software: you can redistribute it and/or modify it under the terms |
| 10 | * of the GNU General Public License as published by the Free Software Foundation, |
| 11 | * either version 3 of the License, or (at your option) any later version. |
| 12 | * |
| 13 | * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 14 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 15 | * PURPOSE. See the GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License along with |
| 18 | * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 19 | * |
| 20 | **/ |
| 21 | |
Nick Gordon | d0a7df3 | 2017-05-30 16:44:34 -0500 | [diff] [blame] | 22 | /*! \file |
| 23 | * Shared include file to provide a single point-of-entry, and |
| 24 | * hopefully improve compile times. |
| 25 | */ |
| 26 | |
Vince Lehman | 0a7da61 | 2014-10-29 14:39:29 -0500 | [diff] [blame] | 27 | #ifndef NLSR_COMMON_HPP |
| 28 | #define NLSR_COMMON_HPP |
| 29 | |
| 30 | #include <ndn-cxx/common.hpp> |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 31 | #include <ndn-cxx/util/time.hpp> |
Vince Lehman | 0a7da61 | 2014-10-29 14:39:29 -0500 | [diff] [blame] | 32 | |
| 33 | namespace nlsr { |
| 34 | |
Alexander Afanasyev | b669f9c | 2014-11-14 12:41:54 -0800 | [diff] [blame] | 35 | using std::bind; |
| 36 | using std::make_shared; |
| 37 | using std::shared_ptr; |
| 38 | using std::function; |
Vince Lehman | 0a7da61 | 2014-10-29 14:39:29 -0500 | [diff] [blame] | 39 | |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 40 | const ndn::time::seconds TIME_ALLOWED_FOR_CANONIZATION = ndn::time::seconds(4); |
| 41 | |
Nick Gordon | 22b5c95 | 2017-08-10 17:48:15 -0500 | [diff] [blame] | 42 | template<typename T, typename = void> |
| 43 | struct is_iterator |
| 44 | { |
| 45 | static constexpr bool value = false; |
| 46 | }; |
| 47 | |
| 48 | /*! Use C++11 iterator_traits to check if some type is an iterator |
| 49 | */ |
| 50 | template<typename T> |
| 51 | struct is_iterator<T, typename std::enable_if<!std::is_same< |
| 52 | typename std::iterator_traits<T>::value_type, |
| 53 | void>::value>::type> |
| 54 | { |
| 55 | static constexpr bool value = true; |
| 56 | }; |
| 57 | |
Nick Gordon | 9461afb | 2017-04-25 15:54:50 -0500 | [diff] [blame] | 58 | } // namespace nlsr |
Vince Lehman | 0a7da61 | 2014-10-29 14:39:29 -0500 | [diff] [blame] | 59 | |
| 60 | #endif // NLSR_COMMON_HPP |