NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
tag.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22 #ifndef NDN_TAG_HPP
23 #define NDN_TAG_HPP
24 
25 namespace ndn {
26 
30 class Tag
31 {
32 public:
33  virtual
34  ~Tag() = 0;
35 
41  // static constexpr int
42  // getTypeId()
43  // {
44  // return <type-identifier>;
45  // }
46 };
47 
48 inline
50 {
51 }
52 
53 } // namespace ndn
54 
55 #endif // NDN_TAG_HPP
Copyright (c) 2011-2015 Regents of the University of California.
virtual ~Tag()=0
Definition: tag.hpp:49
Base class for interest/data tags that can hold any arbitrary information.
Definition: tag.hpp:30