| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| * Copyright (C) 2014 Named Data Networking Project |
| * See COPYING for copyright and distribution information. |
| #ifndef NFD_TABLE_PIT_IN_RECORD_HPP |
| #define NFD_TABLE_PIT_IN_RECORD_HPP |
| #include "pit-face-record.hpp" |
| * \brief contains information about an Interest from an incoming face |
| class InRecord : public FaceRecord |
| InRecord(shared_ptr<Face> face); |
| InRecord(const InRecord& other); |
| update(const Interest& interest); |
| shared_ptr<Interest> m_interest; |
| InRecord::getInterest() const |
| BOOST_ASSERT(static_cast<bool>(m_interest)); |
| #endif // NFD_TABLE_PIT_IN_RECORD_HPP |