From cfd51c6b8f7dbe1f17f752827a315a5504b83ae0 Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 22 Feb 2022 20:59:58 +0000 Subject: [PATCH] Add missing files Signed-off-by: falkTX --- plugins/substation-settings/Settings.cpp | 35 ++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 plugins/substation-settings/Settings.cpp diff --git a/plugins/substation-settings/Settings.cpp b/plugins/substation-settings/Settings.cpp new file mode 100644 index 0000000..0f16ed1 --- /dev/null +++ b/plugins/substation-settings/Settings.cpp @@ -0,0 +1,35 @@ +/* + * DISTRHO Cardinal Plugin + * Copyright (C) 2021-2022 Filipe Coelho + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 3 of + * the License, or any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * For a full copy of the GNU General Public License see the LICENSE file. + */ + +#include "../substation-opensource/src/Settings.hpp" + +namespace slime { +namespace plugin { +namespace substation { + +PluginSettings::PluginSettings(void) {} +PluginSettings::~PluginSettings(void) {} +void PluginSettings::save() {} +void PluginSettings::load() {} +void PluginSettings::appendContextMenu(rack::ui::Menu* menu) {} +void PluginSettings::updateCableColors(const bool& value) {} + +PluginSettings settings; + +} // namespace substation +} // namespace plugin +} // namespace slime