From bf73a19e11e5cccd22f58a5c97e1346dab5587c8 Mon Sep 17 00:00:00 2001 From: ConfuSomu Date: Thu, 3 Aug 2023 17:23:33 +0200 Subject: Create an Archive base class This class is inherited by MastodonArchive to provide Mastodon (and compatible) archive reading support. A base Archive class allows implementing reading support of other archive formats that are from other services. --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index d28f320..2d09544 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,8 +24,10 @@ set(PROJECT_SOURCES src/finddialog.cpp src/finddialog.h src/finddialog.ui - src/archive_parser.cpp - src/archive_parser.h + src/archive/base_archive.cpp + src/archive/base_archive.h + src/archive/mastodon.cpp + src/archive/mastodon.h src/types.h src/list_item.cpp src/list_item.h -- cgit v1.2.3-54-g00ecf