blob: 06f21574a2856df6963af46fa74bc0b4635f3070 [file] [log] [blame]
Jeff Thompson66565852013-10-14 17:59:52 -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#include "no-arguments-visitor.hpp"
10
11namespace ndn {
12
13namespace der
14{
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070015ndnboost::any
Jeff Thompson66565852013-10-14 17:59:52 -070016NoArgumentsVisitor::visit(DerBool& derBool)
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070017{ return ndnboost::any(0); }
Jeff Thompson66565852013-10-14 17:59:52 -070018
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070019ndnboost::any
Jeff Thompson66565852013-10-14 17:59:52 -070020NoArgumentsVisitor::visit(DerInteger& derInteger)
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070021{ return ndnboost::any(0); }
Jeff Thompson66565852013-10-14 17:59:52 -070022
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070023ndnboost::any
Jeff Thompson66565852013-10-14 17:59:52 -070024NoArgumentsVisitor::visit(DerPrintableString& derPStr)
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070025{ return ndnboost::any(0); }
Jeff Thompson66565852013-10-14 17:59:52 -070026
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070027ndnboost::any
Jeff Thompson66565852013-10-14 17:59:52 -070028NoArgumentsVisitor::visit(DerBitString& derBStr)
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070029{ return ndnboost::any(0); }
Jeff Thompson66565852013-10-14 17:59:52 -070030
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070031ndnboost::any
Jeff Thompson66565852013-10-14 17:59:52 -070032NoArgumentsVisitor::visit(DerNull& derNull)
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070033{ return ndnboost::any(0); }
Jeff Thompson66565852013-10-14 17:59:52 -070034
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070035ndnboost::any
Jeff Thompson66565852013-10-14 17:59:52 -070036NoArgumentsVisitor::visit(DerOctetString& derOStr)
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070037{ return ndnboost::any(0); }
Jeff Thompson66565852013-10-14 17:59:52 -070038
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070039ndnboost::any
Jeff Thompson66565852013-10-14 17:59:52 -070040NoArgumentsVisitor::visit(DerOid& derOid)
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070041{ return ndnboost::any(0); }
Jeff Thompson66565852013-10-14 17:59:52 -070042
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070043ndnboost::any
Jeff Thompson66565852013-10-14 17:59:52 -070044NoArgumentsVisitor::visit(DerSequence& derSeq)
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070045{ return ndnboost::any(0); }
Jeff Thompson66565852013-10-14 17:59:52 -070046
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070047ndnboost::any
Jeff Thompson66565852013-10-14 17:59:52 -070048NoArgumentsVisitor::visit(DerGtime& derGtime)
Jeff Thompsond0a7d6d2013-10-15 12:34:26 -070049{ return ndnboost::any(0); }
Jeff Thompson66565852013-10-14 17:59:52 -070050
51} // der
52
53}