19 lines
255 B
C
19 lines
255 B
C
|
#ifndef CertiUIFunction_H
|
||
|
#define CertiUIFunction_H
|
||
|
|
||
|
|
||
|
#include <QString>
|
||
|
#include <QMap>
|
||
|
#include <QObject>
|
||
|
#include "UIFunctionBase.h"
|
||
|
|
||
|
|
||
|
class CertiUIFunction:public UIFunctionBase
|
||
|
{
|
||
|
public:
|
||
|
CertiUIFunction();
|
||
|
~CertiUIFunction();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|