This commit is contained in:
2025-03-30 22:48:08 +02:00
parent a61f24e08c
commit 3b8bb88fbb
16 changed files with 93 additions and 50 deletions

View File

@@ -1,8 +1,6 @@
#include "pins.hpp"
Pin::Pin(std::string name) : SystemElement(name) {
};
Pin::Pin(std::string name) : SystemElement(name) {};
Pins::Pins(void): SystemElementContainer<Pin>("pins") {}