blob: 54dfb6675999a009af76753722613050876ba6b3 [file] [log] [blame]
Jeff Thompson415da1e2013-10-17 16:52:59 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/**
3 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Yingdi Yu <yingdi@cs.ucla.edu>
5 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
6 * See COPYING for copyright and distribution information.
7 */
8
9#ifndef NDN_PUBLIC_KEY_VISITOR_HPP
10#define NDN_PUBLIC_KEY_VISITOR_HPP
11
12#include "no-arguments-visitor.hpp"
13
14namespace ndn {
15
16namespace der {
17
18class PublicKeyVisitor : public NoArgumentsVisitor {
19 public:
20 virtual ndnboost::any visit(DerSequence& );
21};
22
23} // der
24
25}
26
27#endif