mirror of https://github.com/PurpleI2P/i2pd.git
orignal
11 years ago
1 changed files with 26 additions and 0 deletions
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
#ifndef TIMESTAMP_H__ |
||||
#define TIMESTAMP_H__ |
||||
|
||||
#include <inttypes.h> |
||||
#include <chrono> |
||||
|
||||
namespace i2p |
||||
{ |
||||
namespace util |
||||
{ |
||||
inline uint64_t GetMillisecondsSinceEpoch () |
||||
{ |
||||
return std::chrono::duration_cast<std::chrono::milliseconds>( |
||||
std::chrono::system_clock::now().time_since_epoch()).count (); |
||||
} |
||||
|
||||
inline uint32_t GetHoursSinceEpoch () |
||||
{ |
||||
return std::chrono::duration_cast<std::chrono::hours>( |
||||
std::chrono::system_clock::now().time_since_epoch()).count (); |
||||
} |
||||
} |
||||
} |
||||
|
||||
#endif |
||||
|
Loading…
Reference in new issue