13 lines
258 B
C++
13 lines
258 B
C++
#ifndef SUBCONTROLAREA_H
|
|
#define SUBCONTROLAREA_H
|
|
#include "BasicElementInfo.h"
|
|
#include <QXmlStreamReader>
|
|
class SubControlArea:public BasicElementInfo
|
|
{
|
|
public:
|
|
SubControlArea();
|
|
bool parse(QXmlStreamReader &reader);
|
|
};
|
|
|
|
#endif // SUBCONTROLAREA_H
|