diff options
author | lloyd <[email protected]> | 2009-12-24 22:19:09 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-24 22:19:09 +0000 |
commit | 72aaefc3ae5211e5cbd74520ec58c0bfb172f860 (patch) | |
tree | b1b31afa932fcbe77f900ff8e48f8e8fa72907b4 /src/asn1/asn1_obj.h | |
parent | ab35e8266cb93df950c0f93a74f9714d9de40f1c (diff) | |
parent | 75234461be7187b1582cd80134e6d6aaeee82c3e (diff) |
propagate from branch 'net.randombit.botan' (head 775a8de3f880cdc75105b4fa607bcc25bd3a99d1)
to branch 'net.randombit.botan.c++0x' (head b88067c1db54346de91f4930a7cf435609c557c0)
Diffstat (limited to 'src/asn1/asn1_obj.h')
-rw-r--r-- | src/asn1/asn1_obj.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/asn1/asn1_obj.h b/src/asn1/asn1_obj.h index ea21c475f..a640f712b 100644 --- a/src/asn1/asn1_obj.h +++ b/src/asn1/asn1_obj.h @@ -14,6 +14,7 @@ #include <botan/alg_id.h> #include <vector> #include <map> +#include <chrono> namespace Botan { @@ -52,7 +53,7 @@ class BOTAN_DLL X509_Time : public ASN1_Object void set_to(const std::string&); void set_to(const std::string&, ASN1_Tag); - X509_Time(u64bit); + X509_Time(const std::chrono::system_clock::time_point& time); X509_Time(const std::string& = ""); X509_Time(const std::string&, ASN1_Tag); private: |