1
0
Fork 0

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
1 changed files with 5 additions and 0 deletions

View File

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