From ee415570876d8d91e99bab7dc7a14209419a93af Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Sat, 8 Aug 2015 18:53:45 +0200 Subject: Explicitly fwd declase classes BER_Decoder, DER_Encoder --- src/lib/asn1/asn1_time.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/lib/asn1/asn1_time.h') diff --git a/src/lib/asn1/asn1_time.h b/src/lib/asn1/asn1_time.h index f2b1c7975..313b26b06 100644 --- a/src/lib/asn1/asn1_time.h +++ b/src/lib/asn1/asn1_time.h @@ -19,8 +19,11 @@ namespace Botan { class BOTAN_DLL X509_Time : public ASN1_Object { public: - void encode_into(class DER_Encoder&) const override; - void decode_from(class BER_Decoder&) override; + /// DER encode a X509_Time + void encode_into(DER_Encoder&) const override; + + // Decode a BER encoded X509_Time + void decode_from(BER_Decoder&) override; /// Return an internal string representation of the time std::string to_string() const; -- cgit v1.2.3