22 lines
458 B
C
22 lines
458 B
C
|
#ifndef STABILITYUIFUNCTION_H
|
||
|
#define STABILITYUIFUNCTION_H
|
||
|
|
||
|
// #include <functional>
|
||
|
|
||
|
#include <QString>
|
||
|
#include <QMap>
|
||
|
#include <QObject>
|
||
|
#include "UIFunctionBase.h"
|
||
|
|
||
|
class StabilityUIFunction : public UIFunctionBase
|
||
|
{
|
||
|
public:
|
||
|
StabilityUIFunction();
|
||
|
~StabilityUIFunction();
|
||
|
|
||
|
void stab_create_cal(const QString &message);
|
||
|
void stab_cal(const QString &message);
|
||
|
void stab_delete_cal(const QString &message);
|
||
|
|
||
|
};
|
||
|
#endif // MessageHandle_H
|