MappingColors.hpp
1 #pragma once
2 #include <Curve/CurveStyle.hpp>
3 
4 namespace Mapping
5 {
6 class Colors
7 {
8 public:
9  Colors(const score::Skin& s);
10 
11  const auto& style() const { return m_style; }
12 
13 private:
14  Curve::Style m_style;
15 };
16 }
Definition: MappingColors.hpp:7
Definition: Skin.hpp:93
Definition: CurveStyle.hpp:13