| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #pragma once 2 : 3 : #include <string> 4 : 5 : namespace Amplitron { 6 : 7 : // Runtime-editable effect parameter exposed to the UI and preset system. 8 2185 : struct EffectParam { 9 : std::string name; 10 : float value = 0.0f; 11 : float min_val = 0.0f; 12 : float max_val = 0.0f; 13 : float default_val = 0.0f; 14 : std::string unit; 15 : std::string tooltip; 16 : }; 17 : 18 : } // namespace Amplitron |
| Generated by: LCOV version 2.0-1 |