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 "parts.hpp"
Part::Part(std::string name) : SystemElement(name) {
};
Part::Part(std::string name) : SystemElementContainer<Pin>(name) {};
Parts::Parts(void): SystemElementContainer<Part>("parts") {}