dir structure changed
This commit is contained in:
9
src/system/parts.cpp
Normal file
9
src/system/parts.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include "parts.hpp"
|
||||
|
||||
Part::Part(std::string name) : SystemElement(name) {
|
||||
|
||||
};
|
||||
|
||||
Parts::Parts(void): SystemElementContainer<Part>("parts") {}
|
||||
|
||||
Parts::Parts(std::vector<Part> parts): SystemElementContainer<Part>("parts", parts) {}
|
||||
Reference in New Issue
Block a user