blob: 6963da28f62f2576128059483f11779b8ff97c9b [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 nfd {
namespace pit {
InRecord::InRecord(shared_ptr<Face> face)
: FaceRecord(face)
{
}
InRecord::InRecord(const InRecord& other)
: FaceRecord(other)
{
}
} // namespace pit
} // namespace nfd