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
|
SET(QUCS_HDRS
|
||||||
element.h
|
element.h
|
||||||
|
conductor.h
|
||||||
main.h
|
main.h
|
||||||
messagedock.h
|
messagedock.h
|
||||||
misc.h
|
misc.h
|
||||||
|
@ -41,7 +41,6 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
class Node;
|
class Node;
|
||||||
class WireLabel;
|
|
||||||
class Schematic;
|
class Schematic;
|
||||||
|
|
||||||
namespace qucs { // otherwise conflict with <windows.h>
|
namespace qucs { // otherwise conflict with <windows.h>
|
||||||
@ -207,14 +206,4 @@ public:
|
|||||||
int cx, cy, x1, y1, x2, y2; // center and relative boundings
|
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
|
#endif
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
#include <qt3_compat/qt_compat.h>
|
#include <qt3_compat/qt_compat.h>
|
||||||
|
|
||||||
class Wire;
|
class Wire;
|
||||||
|
class WireLabel;
|
||||||
class Schematic;
|
class Schematic;
|
||||||
class Diagram;
|
class Diagram;
|
||||||
class QPainter;
|
class QPainter;
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#ifndef NODE_H
|
#ifndef NODE_H
|
||||||
#define NODE_H
|
#define NODE_H
|
||||||
|
|
||||||
#include "element.h"
|
#include "conductor.h"
|
||||||
|
|
||||||
#include "qt3_compat/qt_compat.h"
|
#include "qt3_compat/qt_compat.h"
|
||||||
|
|
||||||
|
@ -18,8 +18,7 @@
|
|||||||
#ifndef WIRE_H
|
#ifndef WIRE_H
|
||||||
#define WIRE_H
|
#define WIRE_H
|
||||||
|
|
||||||
#include "element.h"
|
#include "conductor.h"
|
||||||
#include "components/component.h" // because of struct Port
|
|
||||||
#include "wirelabel.h"
|
#include "wirelabel.h"
|
||||||
|
|
||||||
class Schematic;
|
class Schematic;
|
||||||
|
@ -18,13 +18,11 @@
|
|||||||
#ifndef WIRELABEL_H
|
#ifndef WIRELABEL_H
|
||||||
#define WIRELABEL_H
|
#define WIRELABEL_H
|
||||||
|
|
||||||
#include "element.h"
|
#include "conductor.h"
|
||||||
|
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
class QPainter;
|
class QPainter;
|
||||||
class Wire;
|
|
||||||
class Node;
|
|
||||||
|
|
||||||
|
|
||||||
class WireLabel : public Element {
|
class WireLabel : public Element {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user