qucs_s/qucs/node.h
ela 68bce527f6 2009-03-10 Stefan Jahn <stefan@lkcc.org>
* schematic_file.cpp (createSubNetlistPlain): Adjusting type
        specifiers of VHDL subcircuits according to arbitrary signal types
        in VHDL files.

2009-03-10  Stefan Jahn  <stefan@lkcc.org>

        * vhdlfile.cpp (loadFile): Extracting signal types and passing
        them to port specifications.
2009-03-10 19:32:11 +00:00

46 lines
1.5 KiB
C++

/***************************************************************************
node.h
--------
begin : Sat Sep 20 2003
copyright : (C) 2003 by Michael Margraf
email : michael.margraf@alumni.tu-berlin.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef NODE_H
#define NODE_H
#include "element.h"
#include <qptrlist.h>
class ViewPainter;
class WireLabel;
class QPainter;
class Node : public Conductor {
public:
Node(int, int);
~Node();
void paint(ViewPainter*);
bool getSelected(int, int);
void setName(const QString&, const QString&, int x_=0, int y_=0);
QPtrList<Element> Connections;
QString Name; // node name used by creation of netlist
QString Type; // type of node (used by digital files)
int State; // remember some things during some operations
};
#endif