blob: 36cca3a0514e51ecb153a0e3d1c50febd78a79fc [file] [log] [blame]
Junxiao Shi65d00722014-02-17 10:50:20 -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 "measurements-entry.hpp"
8
9namespace nfd {
10namespace measurements {
11
12Entry::Entry(const Name& name)
13 : m_name(name)
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -070014 , m_expiry(time::steady_clock::TimePoint::min())
Junxiao Shi65d00722014-02-17 10:50:20 -070015{
16}
17
18} // namespace measurements
19} // namespace nfd