Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 1 | /* -*- 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 | |
| 11 | namespace ndn { |
| 12 | |
| 13 | namespace der |
| 14 | { |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 15 | ndnboost::any |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 16 | NoArgumentsVisitor::visit(DerBool& derBool) |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 17 | { return ndnboost::any(0); } |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 18 | |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 19 | ndnboost::any |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 20 | NoArgumentsVisitor::visit(DerInteger& derInteger) |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 21 | { return ndnboost::any(0); } |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 22 | |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 23 | ndnboost::any |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 24 | NoArgumentsVisitor::visit(DerPrintableString& derPStr) |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 25 | { return ndnboost::any(0); } |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 26 | |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 27 | ndnboost::any |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 28 | NoArgumentsVisitor::visit(DerBitString& derBStr) |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 29 | { return ndnboost::any(0); } |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 30 | |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 31 | ndnboost::any |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 32 | NoArgumentsVisitor::visit(DerNull& derNull) |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 33 | { return ndnboost::any(0); } |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 34 | |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 35 | ndnboost::any |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 36 | NoArgumentsVisitor::visit(DerOctetString& derOStr) |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 37 | { return ndnboost::any(0); } |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 38 | |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 39 | ndnboost::any |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 40 | NoArgumentsVisitor::visit(DerOid& derOid) |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 41 | { return ndnboost::any(0); } |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 42 | |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 43 | ndnboost::any |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 44 | NoArgumentsVisitor::visit(DerSequence& derSeq) |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 45 | { return ndnboost::any(0); } |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 46 | |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 47 | ndnboost::any |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 48 | NoArgumentsVisitor::visit(DerGtime& derGtime) |
Jeff Thompson | d0a7d6d | 2013-10-15 12:34:26 -0700 | [diff] [blame] | 49 | { return ndnboost::any(0); } |
Jeff Thompson | 6656585 | 2013-10-14 17:59:52 -0700 | [diff] [blame] | 50 | |
| 51 | } // der |
| 52 | |
| 53 | } |