Commit 136725df authored by Max Kellermann's avatar Max Kellermann

archive/bzip2: convert struct to class

parent 43889584
......@@ -85,7 +85,7 @@ public:
Error &error) override;
};
struct Bzip2InputStream final : public InputStream {
class Bzip2InputStream final : public InputStream {
Bzip2ArchiveFile *archive;
bool eof = false;
......@@ -94,6 +94,7 @@ struct Bzip2InputStream final : public InputStream {
char buffer[5000];
public:
Bzip2InputStream(Bzip2ArchiveFile &context, const char *uri,
Mutex &mutex, Cond &cond);
~Bzip2InputStream();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment