LCOV - code coverage report
Current view: top level - src/audio/effects/core - effect_param.h (source / functions) Coverage Total Hit
Test: merged.info Lines: 100.0 % 1 1
Test Date: 2026-06-07 15:51:50 Functions: - 0 0

            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