Loading...
Searching...
No Matches
AutomationColors.hpp
1#pragma once
2#include <Curve/CurveStyle.hpp>
3
4#include <score_plugin_automation_export.h>
5
6namespace Automation
7{
8class SCORE_PLUGIN_AUTOMATION_EXPORT Colors
9{
10public:
11 Colors(const score::Skin& s);
12
13 const auto& style() const { return m_style; }
14
15private:
16 Curve::Style m_style;
17};
18}
Definition AutomationColors.hpp:9
Definition Skin.hpp:93
Namespace related to the Automation process.
Definition AutomationColors.cpp:8
Definition CurveStyle.hpp:13