blob: e76cb12a2ece37a5df864edb5f4c87f9c9ca0f23 [file] [log] [blame]
Junxiao Shif7191242015-03-19 05:53:41 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento60f8cc12018-05-10 22:05:21 -04002/*
Davide Pesavento5748e822024-01-26 18:40:22 -05003 * Copyright (c) 2014-2024, Regents of the University of California,
Junxiao Shif7191242015-03-19 05:53:41 -07004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
Junxiao Shi1688ded2015-03-29 10:09:26 -070011 * This file is part of ndn-tools (Named Data Networking Essential Tools).
Junxiao Shif7191242015-03-19 05:53:41 -070012 * See AUTHORS.md for complete list of ndn-tools authors and contributors.
13 *
14 * ndn-tools is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * ndn-tools is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * ndn-tools, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#ifndef NDN_TOOLS_CORE_COMMON_HPP
27#define NDN_TOOLS_CORE_COMMON_HPP
28
Junxiao Shi2713a3b2015-06-22 16:19:05 -070029#ifdef WITH_TESTS
30#define VIRTUAL_WITH_TESTS virtual
31#define PUBLIC_WITH_TESTS_ELSE_PROTECTED public
32#define PUBLIC_WITH_TESTS_ELSE_PRIVATE public
33#define PROTECTED_WITH_TESTS_ELSE_PRIVATE protected
34#else
35#define VIRTUAL_WITH_TESTS
36#define PUBLIC_WITH_TESTS_ELSE_PROTECTED protected
37#define PUBLIC_WITH_TESTS_ELSE_PRIVATE private
38#define PROTECTED_WITH_TESTS_ELSE_PRIVATE private
39#endif
40
Junxiao Shif7191242015-03-19 05:53:41 -070041#include <cstddef>
Davide Pesavento60f8cc12018-05-10 22:05:21 -040042#include <cstdint>
Davide Pesavento5748e822024-01-26 18:40:22 -050043#include <iosfwd>
Davide Pesavento60f8cc12018-05-10 22:05:21 -040044#include <memory>
Davide Pesaventoc0702702017-08-24 22:04:00 -040045#include <stdexcept>
Davide Pesavento60f8cc12018-05-10 22:05:21 -040046#include <string>
Davide Pesaventob3570c62022-02-19 19:19:00 -050047#include <string_view>
Davide Pesaventoc0702702017-08-24 22:04:00 -040048#include <utility>
Junxiao Shif7191242015-03-19 05:53:41 -070049
Junxiao Shif7191242015-03-19 05:53:41 -070050#include <boost/assert.hpp>
Davide Pesaventob07d7a92020-05-13 23:30:07 -040051#include <boost/core/noncopyable.hpp>
Junxiao Shif7191242015-03-19 05:53:41 -070052
53#include <ndn-cxx/data.hpp>
Junxiao Shif7191242015-03-19 05:53:41 -070054#include <ndn-cxx/interest.hpp>
Davide Pesavento60f8cc12018-05-10 22:05:21 -040055#include <ndn-cxx/name.hpp>
Davide Pesavento60f8cc12018-05-10 22:05:21 -040056#include <ndn-cxx/util/time.hpp>
Junxiao Shif7191242015-03-19 05:53:41 -070057
58namespace ndn {
Junxiao Shif7191242015-03-19 05:53:41 -070059using boost::noncopyable;
Junxiao Shi1753afb2015-04-17 20:59:50 -070060} // namespace ndn
Junxiao Shif7191242015-03-19 05:53:41 -070061
Davide Pesaventof8d9a532021-07-03 16:04:12 -040062#define FORWARD_TO_MEM_FN(func) \
63 [this] (auto&&... args) { this->func(std::forward<decltype(args)>(args)...); }
64
Junxiao Shif7191242015-03-19 05:53:41 -070065#endif // NDN_TOOLS_CORE_COMMON_HPP