blob: ce4db8c216c4ae20db9c0ec436a9ab88176b0e33 [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#include "pit-out-record.hpp"
8
9namespace ndn {
10namespace pit {
11
12OutRecord::OutRecord(shared_ptr<Face> face)
13 : FaceRecord(face)
14{
15}
16
17OutRecord::OutRecord(const OutRecord& other)
18 : FaceRecord(other)
19{
20}
21
22} // namespace pit
23} // namespace ndn