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/pins.hpp Normal file
View File

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