blob: 50646a74b3f8c46ae3cee1008f44893cb1890e9c [file] [log] [blame]
Yanbiao Li8ee37ed2015-05-19 12:44:04 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Davide Pesavento7f20d6e2017-01-16 14:43:58 -05003 * Copyright (c) 2013-2017 Regents of the University of California.
Yanbiao Li8ee37ed2015-05-19 12:44:04 -07004 *
Alexander Afanasyev80b68e12015-09-17 17:01:04 -07005 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Yanbiao Li8ee37ed2015-05-19 12:44:04 -07006 *
Alexander Afanasyev80b68e12015-09-17 17:01:04 -07007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070010 *
Alexander Afanasyev80b68e12015-09-17 17:01:04 -070011 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070014 *
Alexander Afanasyev80b68e12015-09-17 17:01:04 -070015 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070020 */
21
22#ifndef NDN_MGMT_CONTROL_PARAMETERS_HPP
23#define NDN_MGMT_CONTROL_PARAMETERS_HPP
24
25#include "../encoding/block.hpp"
26
27namespace ndn {
28namespace mgmt {
29
30/** \brief base class for a struct that contains ControlCommand parameters
31 */
32class ControlParameters
33{
34public:
Davide Pesavento7f20d6e2017-01-16 14:43:58 -050035 virtual
36 ~ControlParameters() = default;
37
Yanbiao Li8ee37ed2015-05-19 12:44:04 -070038 virtual void
39 wireDecode(const Block& wire) = 0;
40
41 virtual Block
42 wireEncode() const = 0;
43};
44
45} // namespace mgmt
46} // namespace ndn
47
48#endif // NDN_MGMT_CONTROL_PARAMETERS_HPP