summaryrefslogtreecommitdiff
path: root/src/ipa/raspberrypi/controller/ccm_algorithm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipa/raspberrypi/controller/ccm_algorithm.h')
-rw-r--r--src/ipa/raspberrypi/controller/ccm_algorithm.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/ipa/raspberrypi/controller/ccm_algorithm.h b/src/ipa/raspberrypi/controller/ccm_algorithm.h
deleted file mode 100644
index e2c4d771..00000000
--- a/src/ipa/raspberrypi/controller/ccm_algorithm.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/* SPDX-License-Identifier: BSD-2-Clause */
-/*
- * Copyright (C) 2019, Raspberry Pi Ltd
- *
- * ccm_algorithm.h - CCM (colour correction matrix) control algorithm interface
- */
-#pragma once
-
-#include "algorithm.h"
-
-namespace RPiController {
-
-class CcmAlgorithm : public Algorithm
-{
-public:
- CcmAlgorithm(Controller *controller) : Algorithm(controller) {}
- /* A CCM algorithm must provide the following: */
- virtual void setSaturation(double saturation) = 0;
-};
-
-} /* namespace RPiController */