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