Mentor import done.

This commit is contained in:
2025-04-21 18:19:37 +02:00
parent 6448972fd8
commit d0bf09aa63
14 changed files with 238 additions and 56 deletions

View File

@@ -4,10 +4,16 @@
#include "syselmts.hpp"
#include "pins.hpp"
#pragma once
class Module; ///< Forward declaration of the Module class.
class Part : public SystemElementContainer<Pin>
{
public:
Part(std::string name);
~Part();
Module *prnt; ///< Pointer to the parent module.
void add(Pin *pin) override;
};
class Parts : public SystemElementContainer<Part>