Loading...
Searching...
No Matches
DMXFixtureInstantiation.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3
4#if defined(OSSIA_PROTOCOL_ARTNET)
5
6namespace ossia::net
7{
8class generic_device;
9struct dmx_buffer;
10}
11namespace Protocols
12{
13namespace Artnet
14{
15struct Fixture;
16}
17void addArtnetFixture(
18 ossia::net::generic_device& dev, ossia::net::dmx_buffer& buffer,
19 const Artnet::Fixture& fix, int channels_per_universe);
20}
21#endif