diff options
author | Shannon Booth <shannon.ml.booth@gmail.com> | 2020-03-07 11:37:51 +1300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-07 01:33:53 +0100 |
commit | 57f1c919df4d755790f6ac1e4797ab514d436f9a (patch) | |
tree | 9323a1aac5621e2baacf39b41842c84be2a5a2c5 /Libraries/LibCore/Gzip.h | |
parent | 4a271430f879f2fb90c5ea0b27de6214d685eb28 (diff) | |
download | serenity-57f1c919df4d755790f6ac1e4797ab514d436f9a.zip |
LibCore: Remove all remaining C prefix references
LibCore's GZip is also moved into the Core namespace with this change.
Diffstat (limited to 'Libraries/LibCore/Gzip.h')
-rw-r--r-- | Libraries/LibCore/Gzip.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Libraries/LibCore/Gzip.h b/Libraries/LibCore/Gzip.h index 30478d5a53..54232ef6b7 100644 --- a/Libraries/LibCore/Gzip.h +++ b/Libraries/LibCore/Gzip.h @@ -28,8 +28,12 @@ #include <AK/Optional.h> #include <AK/String.h> -class CGzip { +namespace Core { + +class Gzip { public: static bool is_compressed(const ByteBuffer& data); static Optional<ByteBuffer> decompress(const ByteBuffer& data); -};
\ No newline at end of file +}; + +} |