blob: 4ec3a8ca8351e3212b4b17bdddfb21191ebc5981 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
/**
* Copyright (C) 2013 Regents of the University of California.
* @author: Yingdi Yu <yingdi@cs.ucla.edu>
* @author: Jeff Thompson <jefft0@remap.ucla.edu>
* See COPYING for copyright and distribution information.
*/
#ifndef NDN_DER_SIMPLE_VISITOR_HPP
#define NDN_DER_SIMPLE_VISITOR_HPP
#include "no-arguments-visitor.hpp"
namespace ndn {
namespace der {
class NoArgumentsVisitor : public NoArgumentsVisitor
{
public:
virtual Any visit(DerBool& ) = 0;
virtual Any visit(DerInteger& ) = 0;
virtual Any visit(DerPrintableString&) = 0;
virtual Any visit(DerBitString& ) = 0;
virtual Any visit(DerNull& ) = 0;
virtual Any visit(DerOctetString& ) = 0;
virtual Any visit(DerOid& ) = 0;
virtual Any visit(DerSequence& ) = 0;
virtual Any visit(DerGtime& ) = 0;
};
} // der
}
#endif