blob: 662f0749942523f28aefdd2ac413cf005f910ae7 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
* Copyright (C) 2014 Named Data Networking Project
* See COPYING for copyright and distribution information.
*/
#include "pit-in-record.hpp"
namespace ndn {
namespace pit {
InRecord::InRecord(shared_ptr<Face> face)
: FaceRecord(face)
{
}
InRecord::InRecord(const InRecord& other)
: FaceRecord(other)
{
}
} // namespace pit
} // namespace ndn