Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 1 | /* -*- 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 | |
| 9 | namespace nfd { |
| 10 | namespace measurements { |
| 11 | |
| 12 | Entry::Entry(const Name& name) |
| 13 | : m_name(name) |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame^] | 14 | , m_expiry(time::steady_clock::TimePoint::min()) |
Junxiao Shi | 65d0072 | 2014-02-17 10:50:20 -0700 | [diff] [blame] | 15 | { |
| 16 | } |
| 17 | |
| 18 | } // namespace measurements |
| 19 | } // namespace nfd |