diff options
author | lloyd <[email protected]> | 2009-12-24 22:22:07 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-24 22:22:07 +0000 |
commit | 9928c80afe38cc39bea1d2d0c5a69cbeee358197 (patch) | |
tree | 65d79c4626133336a4155c3a177879b6791e8757 /src/utils | |
parent | 72aaefc3ae5211e5cbd74520ec58c0bfb172f860 (diff) | |
parent | 90394a98550551d882fb4d9610b9b8bfa7271c76 (diff) |
propagate from branch 'net.randombit.botan' (head a338abd543caa402c32acd952e865c8ec8e85a69)
to branch 'net.randombit.botan.c++0x' (head 3c31abdd15292607deb9d347311220df7451cab0)
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/time.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/time.h b/src/utils/time.h index 467302766..44ec704a4 100644 --- a/src/utils/time.h +++ b/src/utils/time.h @@ -13,6 +13,9 @@ namespace Botan { +/** +* Struct representing a particular date and time +*/ struct BOTAN_DLL calendar_point { u32bit year; @@ -27,9 +30,6 @@ struct BOTAN_DLL calendar_point }; /* -* Time Conversion Functions -*/ -/* * @param time_point a time point from the system clock * @returns calendar_point object representing this time point */ @@ -37,7 +37,7 @@ BOTAN_DLL calendar_point calendar_value( const std::chrono::system_clock::time_point& time_point); /** -@return nanoseconds resolution timestamp, unknown epoch +* @return nanoseconds resolution timestamp, unknown epoch */ BOTAN_DLL u64bit get_nanoseconds_clock(); |