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