summaryrefslogtreecommitdiff
path: root/gzip.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-05-12 16:53:07 -0400
committerJeffrey Walton <noloader@gmail.com>2017-05-12 16:53:07 -0400
commite3ae7000eaf92cf1cfa6f546ec1a0f6d84543f34 (patch)
treee00c8f17ae2f9aaf963683426e7d9bf0f9f755bf /gzip.h
parentcfa339535bdf15054cf9fee7861f963630b0213e (diff)
downloadcryptopp-git-e3ae7000eaf92cf1cfa6f546ec1a0f6d84543f34.tar.gz
Whitespace check-in
Diffstat (limited to 'gzip.h')
-rw-r--r--gzip.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gzip.h b/gzip.h
index 3f7b7cdc..271ff500 100644
--- a/gzip.h
+++ b/gzip.h
@@ -37,14 +37,14 @@ public:
//! \param filetime the filetime to set in the header. The application is responsible for setting it.
void SetFiletime(word32 filetime) { m_filetime = filetime; }
-
+
//! \param filename the original filename to set in the header. The application is responsible for setting it.
//! RFC 1952 requires a ISO/IEC 8859-1 encoding.
//! \param throwOnEncodingError if throwOnEncodingError is true, then the filename is checked to ensure it is
//! ISO/IEC 8859-1 encoded. If the filename does not adhere to ISO/IEC 8859-1, then a InvalidDataFormat
//! is thrown. If throwOnEncodingError is false then the filename is not checked.
void SetFilename(const std::string& filename, bool throwOnEncodingError = false);
-
+
//! \param comment the comment to set in the header. The application is responsible for setting it.
//! RFC 1952 requires a ISO/IEC 8859-1 encoding.
//! \param throwOnEncodingError if throwOnEncodingError is true, then the comment is checked to ensure it is
@@ -55,7 +55,7 @@ public:
protected:
enum {MAGIC1=0x1f, MAGIC2=0x8b, // flags for the header
DEFLATED=8, FAST=4, SLOW=2};
-
+
enum FLAG_MASKS {
FILENAME=8, COMMENTS=16};
@@ -65,7 +65,7 @@ protected:
word32 m_totalLen;
CRC32 m_crc;
-
+
word32 m_filetime;
std::string m_filename;
std::string m_comment;
@@ -99,13 +99,13 @@ public:
//! \return the filetime of the stream as set in the header. The application is responsible for setting it on the decompressed file.
word32 GetFiletime() const { return m_filetime; }
-
+
//! \return the filename of the stream as set in the header. The application is responsible for setting it on the decompressed file.
//! \param throwOnEncodingError if throwOnEncodingError is true, then the filename is checked to ensure it is
//! ISO/IEC 8859-1 encoded. If the filename does not adhere to ISO/IEC 8859-1, then a InvalidDataFormat is thrown.
//! If throwOnEncodingError is false then the filename is not checked.
const std::string& GetFilename(bool throwOnEncodingError = false) const;
-
+
//! \return the comment of the stream as set in the header.
//! \param throwOnEncodingError if throwOnEncodingError is true, then the comment is checked to ensure it is
//! ISO/IEC 8859-1 encoded. If the comment does not adhere to ISO/IEC 8859-1, then a InvalidDataFormat is thrown.