dir structure changed

This commit is contained in:
2025-03-30 18:04:53 +02:00
parent c123001f79
commit d35d9ced2f
15 changed files with 0 additions and 0 deletions

9
src/system/pins.cpp Normal file
View File

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