ArchiveFile: convert to a class

This commit is contained in:
Max Kellermann
2013-01-29 23:26:51 +01:00
parent ba51045d9e
commit f5c0b0d316
10 changed files with 66 additions and 85 deletions

View File

@@ -25,6 +25,7 @@
#include "InputInit.hxx"
#include "ArchiveList.hxx"
#include "ArchivePlugin.hxx"
#include "ArchiveFile.hxx"
#include "ArchiveVisitor.hxx"
#include "fs/Path.hxx"
@@ -97,10 +98,11 @@ main(int argc, char **argv)
int result = EXIT_SUCCESS;
archive_file *file = archive_file_open(plugin, path.c_str(), &error);
ArchiveFile *file = archive_file_open(plugin, path.c_str(), &error);
if (file != nullptr) {
MyArchiveVisitor visitor;
archive_file_visit(file, visitor);
archive_file_close(file);
} else {
fprintf(stderr, "%s\n", error->message);
g_error_free(error);