blob: ce4db8c216c4ae20db9c0ec436a9ab88176b0e33 [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-out-record.hpp"
namespace ndn {
namespace pit {
OutRecord::OutRecord(shared_ptr<Face> face)
: FaceRecord(face)
{
}
OutRecord::OutRecord(const OutRecord& other)
: FaceRecord(other)
{
}
} // namespace pit
} // namespace ndn