/* Copyright 2006-2024 The QElectroTech Team This file is part of QElectroTech. QElectroTech is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version. QElectroTech is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with QElectroTech. If not, see . */ #ifndef TRUETERMINALSTRIP_H #define TRUETERMINALSTRIP_H #include "terminalstripdrawer.h" class TerminalStrip; class PhysicalTerminal; class RealTerminal; class TerminalStripBridge; namespace TerminalStripDrawer { class TrueTerminalStrip : public AbstractTerminalStripInterface { public: TrueTerminalStrip(TerminalStrip *strip); QString installation() const override; QString location() const override; QString name() const override; QVector> physicalTerminal() const override; private: QPointer m_strip; }; class TruePhysicalTerminal : public AbstractPhysicalTerminalInterface { public: TruePhysicalTerminal(QSharedPointer physical); QVector> realTerminals() const override; private: QSharedPointer m_physical; }; class TrueRealTerminal : public AbstractRealTerminalInterface { public: TrueRealTerminal(QSharedPointer real); QString label() const override; bool isBridged() const override; AbstractBridgeInterface* bridge() const override; private: QSharedPointer m_real; }; class TrueBridge : public AbstractBridgeInterface { public: TrueBridge(QSharedPointer bridge); QUuid uuid() const override; private: QSharedPointer m_bridge; }; } #endif // TRUETERMINALSTRIP_H