1
0
Fork 0

Controllers emulate the operation of Input Gateways

This commit is contained in:
Kevin Matz 2023-05-20 13:40:54 -04:00
parent 2a777946f5
commit 30621d7bb1
1 changed files with 7 additions and 2 deletions

View File

@ -24,14 +24,19 @@
#pragma once
#include "device.h"
#include "gateway.h"
namespace ARTNET {
/**
* @brief \cite ARTNET A generic term describing an Art-Net device with the
* primary task of generating control data. For example, a lighting console.
* primary task of generating control data.
*
* \cite ARTNET Controllers emulate the operation of Input Gateways.
*/
class Controller : public virtual Device
class Controller
: public Device
, public InputGateway
{
public:
explicit Controller();