cimforreduceloss/testHasttable/synchronousmachine.h

16 lines
404 B
C
Raw Normal View History

#ifndef SYNCHRONOUSMACHINE_H
#define SYNCHRONOUSMACHINE_H
#include <QXmlStreamReader>
#include "BasicElementInfo.h"
class SynchronousMachine:public BasicElementInfo
{
public:
explicit SynchronousMachine(QObject *parent = 0);
virtual bool parse(QXmlStreamReader& reader);
protected:
QString terminal;
virtual bool derivedParse(QXmlStreamReader& reader);
};
#endif // SYNCHRONOUSMACHINE_H