nodes contain a set of ports

This commit is contained in:
Kevin Matz 2022-11-15 11:41:25 -05:00
parent 161f8644ec
commit 4123e85328

View File

@ -24,6 +24,8 @@
#pragma once #pragma once
#include "device.h" #include "device.h"
#include "port.h"
#include <vector>
namespace ARTNET { namespace ARTNET {
@ -34,6 +36,9 @@ class Node : public virtual Device
{ {
public: public:
explicit Node(); explicit Node();
private:
std::vector<Port*> _ports;
}; };
} // namespace ARTNET } // namespace ARTNET