1
0
Fork 0

EPT client implementation is optional

This commit is contained in:
Kevin Matz 2021-08-16 12:09:11 -04:00
parent d5f05f6fbe
commit d3f1edc33a
6 changed files with 0 additions and 9 deletions

View File

@ -31,7 +31,6 @@ namespace RDMnet {
Broker::Broker(UUID::uuid cid)
: ACN::Component(cid)
, LLRP::Target()
, EPT::Client()
{
}

View File

@ -25,7 +25,6 @@
#include "acn/component.h"
#include "client.h"
#include "rdmnet.h"
#include "rpt.h"
#include "target.h"
@ -38,7 +37,6 @@ namespace RDMnet {
class Broker
: public ACN::Component
, public LLRP::Target
, public EPT::Client
{
public:
Broker(UUID::uuid = UUID::uuid());

View File

@ -32,7 +32,6 @@ Controller::Controller(UUID::uuid cid)
: ACN::Component(cid)
, RDM::Controller()
, LLRP::Target()
, EPT::Client()
{
}

View File

@ -26,7 +26,6 @@
#include "acn/component.h"
#include "rdm/controller.h"
#include "client.h"
#include "rdmnet.h"
#include "rpt.h"
#include "target.h"
@ -40,7 +39,6 @@ class Controller
: public ACN::Component
, public RDM::Controller
, public LLRP::Target
, public EPT::Client
{
public:
Controller(UUID::uuid = UUID::uuid());

View File

@ -32,7 +32,6 @@ Device::Device(UUID::uuid cid, UUID::uuid rid, RDM::UID uid)
: ACN::Component(cid)
, RDM::Responder(uid)
, LLRP::Target()
, EPT::Client()
, rid_(rid)
{

View File

@ -26,7 +26,6 @@
#include "acn/component.h"
#include "rdm/responder.h"
#include "client.h"
#include "rdmnet.h"
#include "rpt.h"
#include "target.h"
@ -40,7 +39,6 @@ class Device
: public ACN::Component
, public RDM::Responder
, public LLRP::Target
, public EPT::Client
{
public:
Device(UUID::uuid cid = UUID::uuid(),