AutomationColors.hpp
1 #pragma once
2 #include <Curve/CurveStyle.hpp>
3 
4 #include <score_plugin_automation_export.h>
5 
6 namespace Automation
7 {
8 class SCORE_PLUGIN_AUTOMATION_EXPORT Colors
9 {
10 public:
11  Colors(const score::Skin& s);
12 
13  const auto& style() const { return m_style; }
14 
15 private:
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