struct Snippet::Base::ParamValΒΆ

Additional input variables, row state variables and other things have a name, a type and an initial value.

#include <snippet.h>

struct ParamVal
{
    // fields

    std::string name;
    std::string type;
    double value;
};