20 lines
336 B
C++
20 lines
336 B
C++
|
#pragma once
|
||
|
#include <Ottobit/OttobitModel.hpp>
|
||
|
#include <halp/layout.hpp>
|
||
|
|
||
|
namespace Example
|
||
|
{
|
||
|
struct Ottobit::ui
|
||
|
{
|
||
|
using enum halp::colors;
|
||
|
using enum halp::layouts;
|
||
|
|
||
|
halp_meta(name, "Main")
|
||
|
halp_meta(layout, vbox)
|
||
|
halp_meta(background, dark)
|
||
|
|
||
|
halp::label title{"My First Processor"};
|
||
|
halp::item<&ins::gain> gain;
|
||
|
};
|
||
|
}
|