dir structure changed
This commit is contained in:
9
src/system/pins.cpp
Normal file
9
src/system/pins.cpp
Normal 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) {}
|
||||
Reference in New Issue
Block a user