Move 'Conductor' to a separate header file

This commit is contained in:
Andrey Kalmykov 2024-07-14 18:14:21 +02:00
parent b6750a1bf6
commit 6e5493b13b
6 changed files with 5 additions and 17 deletions

View File

@ -132,6 +132,7 @@ SET(QUCS_SRCS
SET(QUCS_HDRS
element.h
conductor.h
main.h
messagedock.h
misc.h

View File

@ -41,7 +41,6 @@
#include <vector>
class Node;
class WireLabel;
class Schematic;
namespace qucs { // otherwise conflict with <windows.h>
@ -207,14 +206,4 @@ public:
int cx, cy, x1, y1, x2, y2; // center and relative boundings
};
/** \class Conductor
* \brief label for Node and Wire classes
*
*/
class Conductor : public Element {
public:
WireLabel *Label;
};
#endif

View File

@ -24,6 +24,7 @@
#include <qt3_compat/qt_compat.h>
class Wire;
class WireLabel;
class Schematic;
class Diagram;
class QPainter;

View File

@ -18,7 +18,7 @@
#ifndef NODE_H
#define NODE_H
#include "element.h"
#include "conductor.h"
#include "qt3_compat/qt_compat.h"

View File

@ -18,8 +18,7 @@
#ifndef WIRE_H
#define WIRE_H
#include "element.h"
#include "components/component.h" // because of struct Port
#include "conductor.h"
#include "wirelabel.h"
class Schematic;

View File

@ -18,13 +18,11 @@
#ifndef WIRELABEL_H
#define WIRELABEL_H
#include "element.h"
#include "conductor.h"
#include <QString>
class QPainter;
class Wire;
class Node;
class WireLabel : public Element {