#pragma once #include #include "options/options.hpp" using namespace options; struct osc_settings : opts { value address; value port; osc_settings() : opts("proto-osc"), address{b, "address", "127.0.0.1"}, port(b, "port", 53101) {} };