Junxiao Shi | cbba04c | 2014-01-26 14:21:22 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (C) 2014 Named Data Networking Project |
| 4 | * See COPYING for copyright and distribution information. |
| 5 | */ |
| 6 | |
| 7 | #ifndef NFD_TABLE_PIT_IN_RECORD_HPP |
| 8 | #define NFD_TABLE_PIT_IN_RECORD_HPP |
| 9 | |
| 10 | #include "pit-face-record.hpp" |
| 11 | |
| 12 | namespace ndn { |
| 13 | namespace pit { |
| 14 | |
| 15 | /** \class InRecord |
| 16 | * \brief contains information about an Interest from an incoming face |
| 17 | */ |
| 18 | class InRecord : public FaceRecord |
| 19 | { |
| 20 | public: |
| 21 | explicit |
| 22 | InRecord(shared_ptr<Face> face); |
| 23 | |
| 24 | InRecord(const InRecord& other); |
| 25 | }; |
| 26 | |
| 27 | } // namespace pit |
| 28 | } // namespace ndn |
| 29 | |
| 30 | #endif // NFD_TABLE_PIT_IN_RECORD_HPP |