16 lines
379 B
C
16 lines
379 B
C
|
|
#ifndef SYNCHRONOUSMACHINE_H
|
||
|
|
#define SYNCHRONOUSMACHINE_H
|
||
|
|
#include <QXmlStreamReader>
|
||
|
|
#include "BasicElementInfo.h"
|
||
|
|
class SynchronousMachine:public BasicElementInfo
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
SynchronousMachine();
|
||
|
|
virtual bool parse(QXmlStreamReader& reader);
|
||
|
|
protected:
|
||
|
|
QStringRef terminal;
|
||
|
|
virtual bool derivedParse(QXmlStreamReader& reader);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // SYNCHRONOUSMACHINE_H
|