Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2011-2015 Regents of the University of California. |
Spyridon Mastorakis | 86edf6f | 2014-11-14 19:27:18 -0800 | [diff] [blame] | 4 | * |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 5 | * This file is part of ndnSIM. See AUTHORS for complete list of ndnSIM authors and |
| 6 | * contributors. |
Spyridon Mastorakis | 86edf6f | 2014-11-14 19:27:18 -0800 | [diff] [blame] | 7 | * |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 8 | * ndnSIM is free software: you can redistribute it and/or modify it under the terms |
| 9 | * of the GNU General Public License as published by the Free Software Foundation, |
| 10 | * either version 3 of the License, or (at your option) any later version. |
Spyridon Mastorakis | 86edf6f | 2014-11-14 19:27:18 -0800 | [diff] [blame] | 11 | * |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 12 | * ndnSIM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 13 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 | * PURPOSE. See the GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License along with |
| 17 | * ndnSIM, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 18 | **/ |
Spyridon Mastorakis | 86edf6f | 2014-11-14 19:27:18 -0800 | [diff] [blame] | 19 | |
| 20 | #ifndef NDNSIM_UTILS_TIME_HPP |
| 21 | #define NDNSIM_UTILS_TIME_HPP |
| 22 | |
| 23 | #include "ns3/ndnSIM/model/ndn-common.hpp" |
| 24 | |
| 25 | #include <ndn-cxx/util/time-custom-clock.hpp> |
| 26 | |
| 27 | namespace ns3 { |
| 28 | namespace ndn { |
| 29 | namespace time { |
| 30 | |
| 31 | class CustomSystemClock : public CustomClock<system_clock> { |
| 32 | public: |
| 33 | system_clock::time_point |
| 34 | getNow() const; |
| 35 | |
| 36 | std::string |
| 37 | getSince() const; |
| 38 | |
| 39 | boost::posix_time::time_duration |
| 40 | toPosixDuration(const system_clock::duration& duration) const; |
| 41 | }; |
| 42 | |
| 43 | class CustomSteadyClock : public CustomClock<steady_clock> { |
| 44 | public: |
| 45 | steady_clock::time_point |
| 46 | getNow() const; |
| 47 | |
| 48 | std::string |
| 49 | getSince() const; |
| 50 | |
| 51 | boost::posix_time::time_duration |
| 52 | toPosixDuration(const steady_clock::duration& duration) const; |
| 53 | }; |
| 54 | |
| 55 | } // namespace time |
| 56 | } // namespace ndn |
| 57 | } // namespace ns3 |
| 58 | |
| 59 | #endif // NDNSIM_UTILS_TIME_HPP |