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) | ||||
14 | , m_expiry(0) | ||||
15 | { | ||||
16 | } | ||||
17 | |||||
18 | } // namespace measurements | ||||
19 | } // namespace nfd |