network-simulator/include/Network.hpp
2023-06-30 01:13:55 +02:00

21 lines
379 B
C++

#pragma once
#include <vector>
#include <memory>
#include <string>
#include "Device.hpp"
class Network {
public:
friend std::ostream& operator<<(std::ostream& os, const Network& network);
public:
Network(const std::string& name);
void addDevice(std::shared_ptr<Device> device);
private:
std::vector<std::shared_ptr<Device>> devices;
std::string name;
};