All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
validator-null.hpp
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
23 #ifndef NDN_VALIDATOR_NULL_HPP
24 #define NDN_VALIDATOR_NULL_HPP
25 
26 #include "v2/validator.hpp"
27 
28 namespace ndn {
29 
34 class ValidatorNull : public Validator {
35 public:
36  ValidatorNull();
37 };
38 
39 }
40 
41 #endif
The Validator class provides an interface for validating data and interest packets.
Definition: validator.hpp:55
A ValidatorNull extends Validator with an "accept-all" policy and an offline certificate fetcher...
Definition: validator-null.hpp:34