cimforreduceloss/testHasttable/terminal.h

20 lines
496 B
C
Raw Permalink Normal View History

#ifndef TERMINAL_H
#define TERMINAL_H
#include <QXmlStreamReader>
#include "BasicElementInfo.h"
#include "nodetoterminal.h"
class Terminal:public BasicElementInfo
{
public:
explicit Terminal(QObject *parent = 0);
virtual bool parse(QXmlStreamReader& reader);
QString getConductingEquipment();
QString getConnectivityNode();
protected:
virtual bool derivedParse(QXmlStreamReader& reader);
QString conductingEquipment;
QString connectivityNode;
};
#endif // TERMINAL_H