blob: 2c9498fb7f1f62dc965ddf33d6178885d57caa4b [file] [log] [blame]
Junxiao Shi61c5ef32014-01-24 20:59:30 -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#ifndef NFD_CORE_TIME_H
8#define NFD_CORE_TIME_H
9
10#include "common.hpp"
Junxiao Shic041ca32014-02-25 20:01:15 -070011#include <ndn-cpp-dev/util/time.hpp>
Junxiao Shi61c5ef32014-01-24 20:59:30 -070012
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080013namespace nfd {
Junxiao Shi61c5ef32014-01-24 20:59:30 -070014namespace time {
15
Junxiao Shic041ca32014-02-25 20:01:15 -070016using ndn::time::Duration;
17using ndn::time::Point;
18using ndn::time::monotonic_clock;
19using ndn::time::now;
20using ndn::time::seconds;
21using ndn::time::milliseconds;
22using ndn::time::microseconds;
23using ndn::time::nanoseconds;
Alexander Afanasyev920af2f2014-01-25 22:56:11 -080024
Junxiao Shi61c5ef32014-01-24 20:59:30 -070025} // namespace time
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080026} // namespace nfd
Junxiao Shi61c5ef32014-01-24 20:59:30 -070027
28#endif // NFD_CORE_TIME_H