Junxiao Shi | 61c5ef3 | 2014-01-24 20:59:30 -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 | #ifndef NFD_CORE_TIME_H |
| 8 | #define NFD_CORE_TIME_H |
| 9 | |
| 10 | #include "common.hpp" |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame^] | 11 | #include <ndn-cpp-dev/util/time.hpp> |
Junxiao Shi | 61c5ef3 | 2014-01-24 20:59:30 -0700 | [diff] [blame] | 12 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 13 | namespace nfd { |
Junxiao Shi | 61c5ef3 | 2014-01-24 20:59:30 -0700 | [diff] [blame] | 14 | namespace time { |
| 15 | |
Junxiao Shi | c041ca3 | 2014-02-25 20:01:15 -0700 | [diff] [blame^] | 16 | using ndn::time::Duration; |
| 17 | using ndn::time::Point; |
| 18 | using ndn::time::monotonic_clock; |
| 19 | using ndn::time::now; |
| 20 | using ndn::time::seconds; |
| 21 | using ndn::time::milliseconds; |
| 22 | using ndn::time::microseconds; |
| 23 | using ndn::time::nanoseconds; |
Alexander Afanasyev | 920af2f | 2014-01-25 22:56:11 -0800 | [diff] [blame] | 24 | |
Junxiao Shi | 61c5ef3 | 2014-01-24 20:59:30 -0700 | [diff] [blame] | 25 | } // namespace time |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 26 | } // namespace nfd |
Junxiao Shi | 61c5ef3 | 2014-01-24 20:59:30 -0700 | [diff] [blame] | 27 | |
| 28 | #endif // NFD_CORE_TIME_H |