logplus/Workflow/WFCrystal/Plugin/include/ControlExtension.h

43 lines
976 B
C
Raw Normal View History

2026-01-16 17:18:41 +08:00
/**
* @file ControlExtension.h
* @brief P.A.I MVC框架的一部分
* @date 2011-11-04
*/
#ifndef PAI_FRAME_PLUGIN_CONTROLEXTENSION_H
#define PAI_FRAME_PLUGIN_CONTROLEXTENSION_H
#include "IExtension.h"
#include <QString>
namespace pai
{
/**
* @class ControlExtension
* @brief P.A.I MVC框架的一部分
* 便
*/
class PAI_PLUGIN_EXPORT ControlExtension : public pai::IExtension
{
public:
/**
* @brief
*/
ControlExtension();
/**
* @brief
*/
virtual ~ControlExtension(){};
/**
* @brief
* @param[in] title
* @param[in] message
*/
void ShowMessage(const QString & title, const QString & message);
};
}
#endif ///< PAI_FRAME_PLUGIN_CONTROLEXTENSION_H