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

19
src/system/parts.hpp Normal file
View File

@@ -0,0 +1,19 @@
#ifndef _PARTS_HPP_
#define _PARTS_HPP_
#include "syselmts.hpp"
class Part : public SystemElement
{
public:
Part(std::string name);
};
class Parts : public SystemElementContainer<Part>
{
public:
Parts(void);
Parts(std::vector<Part> parts);
};
#endif // _PARTS_HPP_