qucs_s/qucs/conductor.h
Andrey Kalmykov 2cad2d6a13 Refactor Node class
- 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
2024-07-16 19:32:38 +02:00

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