rename addDevice to AddDevice

This commit is contained in:
Robert 2023-07-02 18:26:29 +02:00
parent ddf35406c3
commit e227933b53
3 changed files with 6 additions and 6 deletions

View file

@ -13,7 +13,7 @@ public:
public:
Network(const std::string& name);
void addDevice(std::shared_ptr<Device> device);
void AddDevice(std::shared_ptr<Device> device);
private:
std::vector<std::shared_ptr<Device>> devices;