From 1573a8c4cde1cd9528b422b2dcc598e37ffe94a7 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Thu, 2 May 2024 19:12:26 +1000 Subject: WIP merge cyclically dependent components into one big component --- src/database/include/file_gatherer.hpp | 36 ---------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 src/database/include/file_gatherer.hpp (limited to 'src/database/include/file_gatherer.hpp') diff --git a/src/database/include/file_gatherer.hpp b/src/database/include/file_gatherer.hpp deleted file mode 100644 index 685bdb2c..00000000 --- a/src/database/include/file_gatherer.hpp +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright 2023 jacqueline - * - * SPDX-License-Identifier: GPL-3.0-only - */ - -#pragma once - -#include -#include -#include -#include - -#include "ff.h" - -namespace database { - -class IFileGatherer { - public: - virtual ~IFileGatherer(){}; - - virtual auto FindFiles( - const std::string& root, - std::function cb) - -> void = 0; -}; - -class FileGathererImpl : public IFileGatherer { - public: - virtual auto FindFiles( - const std::string& root, - std::function cb) - -> void override; -}; - -} // namespace database -- cgit v1.2.3