summaryrefslogtreecommitdiff
path: root/image/backends/backends.hh
diff options
context:
space:
mode:
Diffstat (limited to 'image/backends/backends.hh')
-rw-r--r--image/backends/backends.hh33
1 files changed, 0 insertions, 33 deletions
diff --git a/image/backends/backends.hh b/image/backends/backends.hh
deleted file mode 100644
index 3199ee0..0000000
--- a/image/backends/backends.hh
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * backends.hh - Horizon Image Creation backend table
- * image, the image processing utilities for
- * Project Horizon
- *
- * Copyright (c) 2020 Adélie Linux and contributors. All rights reserved.
- * This code is licensed under the AGPL 3.0 license, as noted in the
- * LICENSE-code file in the root directory of this repository.
- *
- * SPDX-License-Identifier: AGPL-3.0-only
- */
-
-#pragma once
-
-#include <functional>
-#include <string>
-#include <vector>
-
-namespace Horizon {
-namespace Image {
-
-class BasicBackend;
-
-struct BackendDescriptor {
- std::string type_code;
- std::string description;
- std::function<BasicBackend *(std::string, std::string)> creation_fn;
-};
-
-extern std::vector<BackendDescriptor> known_backends;
-
-}
-}