refactoring. Everything is pointer.

This commit is contained in:
2025-04-21 12:18:26 +02:00
parent 3b8bb88fbb
commit d8122d19a2
16 changed files with 144 additions and 85 deletions

View File

@@ -14,7 +14,7 @@ class Parts : public SystemElementContainer<Part>
{
public:
Parts(void);
Parts(std::vector<Part> parts);
Parts(std::vector<Part *> parts);
};
#endif // _PARTS_HPP_