blob: 1663e5a23d0c0e4d3b21ecfbe2e5d8c57869d2e3 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -08002/*
3 * Copyright (c) 2013-2017 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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.
10 *
11 * 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.
14 *
15 * 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.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070020 *
21 * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/>
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070022 */
23
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080024#ifndef NDN_SECURITY_V2_VALIDATOR_CONFIG_COMMON_HPP
25#define NDN_SECURITY_V2_VALIDATOR_CONFIG_COMMON_HPP
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070026
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080027#include "../../../common.hpp"
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070028#include <boost/property_tree/ptree.hpp>
29
30namespace ndn {
31namespace security {
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080032namespace v2 {
33namespace validator_config {
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070034
35typedef boost::property_tree::ptree ConfigSection;
36
37class Error : public std::runtime_error
38{
39public:
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080040 using std::runtime_error::runtime_error;
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070041};
42
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080043} // namespace validator_config
44} // namespace v2
Yingdi Yu48e8c0c2014-03-19 12:01:55 -070045} // namespace security
46} // namespace ndn
47
Alexander Afanasyeve5a19b82017-01-30 22:30:46 -080048#endif // NDN_SECURITY_V2_VALIDATOR_CONFIG_COMMON_HPP