blob: 83ff3e11c19dceb2273e37428fa53ba0065ee9cc [file] [log] [blame]
Junxiao Shicbba04c2014-01-26 14:21:22 -07001/* -*- 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_OUT_RECORD_HPP
8#define NFD_TABLE_PIT_OUT_RECORD_HPP
9
10#include "pit-face-record.hpp"
11
12namespace ndn {
13namespace pit {
14
15/** \class OutRecord
16 * \brief contains information about an Interest toward an outgoing face
17 */
18class OutRecord : public FaceRecord
19{
20public:
21 explicit
22 OutRecord(shared_ptr<Face> face);
23
24 OutRecord(const OutRecord& other);
25};
26
27} // namespace pit
28} // namespace ndn
29
30#endif // NFD_TABLE_PIT_IN_RECORD_HPP