27 lines
497 B
C
27 lines
497 B
C
|
#ifndef RECIPEXMLCONTROL_H
|
||
|
#define RECIPEXMLCONTROL_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include "dataformate.h"
|
||
|
class RecipeXmlControl : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit RecipeXmlControl(QObject *parent = nullptr);
|
||
|
|
||
|
QList<ST_RecipeParam> getFESRecipes();
|
||
|
|
||
|
QList<ST_RecipeParam> getFESRecipesReverse();
|
||
|
bool readRecipeXml();
|
||
|
signals:
|
||
|
|
||
|
private:
|
||
|
|
||
|
|
||
|
private:
|
||
|
QList<ST_RecipeParam> recipeParamList;
|
||
|
QList<ST_RecipeParam> recipeParamReverseList;
|
||
|
};
|
||
|
|
||
|
#endif // RECIPEXMLCONTROL_H
|