| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| * Copyright (C) 2014 Named Data Networking Project |
| * See COPYING for copyright and distribution information. |
| #ifndef NFD_TABLE_MEASUREMENTS_ENTRY_HPP |
| #define NFD_TABLE_MEASUREMENTS_ENTRY_HPP |
| #include "strategy-info-host.hpp" |
| #include "core/scheduler.hpp" |
| * \brief represents a Measurements entry |
| class Entry : public StrategyInfoHost, noncopyable |
| time::steady_clock::TimePoint m_expiry; |
| shared_ptr<name_tree::Entry> m_nameTreeEntry; |
| friend class nfd::NameTree; |
| friend class nfd::name_tree::Entry; |
| friend class nfd::Measurements; |
| } // namespace measurements |
| #endif // NFD_TABLE_MEASUREMENTS_ENTRY_HPP |