mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Move 'Conductor' to a separate header file
This commit is contained in:
parent
b6750a1bf6
commit
6e5493b13b
@ -132,6 +132,7 @@ SET(QUCS_SRCS
|
||||
|
||||
SET(QUCS_HDRS
|
||||
element.h
|
||||
conductor.h
|
||||
main.h
|
||||
messagedock.h
|
||||
misc.h
|
||||
|
@ -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
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include <qt3_compat/qt_compat.h>
|
||||
|
||||
class Wire;
|
||||
class WireLabel;
|
||||
class Schematic;
|
||||
class Diagram;
|
||||
class QPainter;
|
||||
|
@ -18,7 +18,7 @@
|
||||
#ifndef NODE_H
|
||||
#define NODE_H
|
||||
|
||||
#include "element.h"
|
||||
#include "conductor.h"
|
||||
|
||||
#include "qt3_compat/qt_compat.h"
|
||||
|
||||
|
@ -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;
|
||||
|
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user