From d21b367a8722bc178ffb5c3e96c46c0190122242 Mon Sep 17 00:00:00 2001 From: Lars Mewes Date: Thu, 17 Feb 2022 10:35:23 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=9EColorScale.h=E2=80=9C=20l=C3=B6schen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ColorScale.h | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 ColorScale.h diff --git a/ColorScale.h b/ColorScale.h deleted file mode 100644 index 212e795..0000000 --- a/ColorScale.h +++ /dev/null @@ -1,31 +0,0 @@ -/* COLORSCALE_H - * CLASS DECLARATION - * - * CHANGLOG: - * NAME: | CHANGES: | DATE: | - * Mewes, Lars | Neuerstellung | 24.09.2021 | - * | | | - * | | | - * | | | - * - * DESCRIPTION: - * Diese Klasse beinhaltet sämtliche Töne einer Oktave, die mithilfe von getter-setter-Funktionen genutzt werden können. - * - * TO-DOs: - * - * - */ - -#pragma once -#include "Tone.h" - - -class ColorScale{ - Tone allTones[12]; -public: - Tone * getToneByName(QString name); - Tone * getToneByKeyboardPosition(int pos); - void setToneColor(Tone * tone, QColor color); - ColorScale(); - -};