From 4123e853285341d5c30270a28f766380eab031af Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Tue, 15 Nov 2022 11:41:25 -0500 Subject: [PATCH] nodes contain a set of ports --- protocol/artnet/node.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/protocol/artnet/node.h b/protocol/artnet/node.h index c71b0b1..ece94f0 100644 --- a/protocol/artnet/node.h +++ b/protocol/artnet/node.h @@ -24,6 +24,8 @@ #pragma once #include "device.h" +#include "port.h" +#include namespace ARTNET { @@ -34,6 +36,9 @@ class Node : public virtual Device { public: explicit Node(); + +private: + std::vector _ports; }; } // namespace ARTNET