mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

- Remove dependency on Q3PtrList (most important) - Hide implementation details (in particular make private container used to actually store connected elements) - New class API - Formatting and code structuring
17 lines
227 B
C++
17 lines
227 B
C++
|
|
#ifndef CONDUCTOR_H
|
|
#define CONDUCTOR_H
|
|
#include "element.h"
|
|
|
|
class WireLabel;
|
|
|
|
/** \class Conductor
|
|
* \brief label for Node and Wire classes
|
|
*
|
|
*/
|
|
class Conductor : public Element {
|
|
public:
|
|
WireLabel *Label;
|
|
};
|
|
|
|
#endif |