logplus/Workflow/WFCrystal/Plugin/src/ControlExtension.cpp
2026-01-16 17:18:41 +08:00

25 lines
675 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @file ControlExtension.cpp
* @brief 所有控制类的基类属于P.A.I MVC框架的一部分
* @date 2011-11-04
*/
// #include "PaiMessageBox.h"
// #include "ConsoleGUIService.h"
#include "ControlExtension.h"
// #include "Log.h"
using namespace pai;
ControlExtension::ControlExtension() :
IExtension()
{
}
void ControlExtension::ShowMessage(const QString& title, const QString& message)
{
// ConsoleGUIService* pServer = ::GetConsoleGUIService();
// pai::gui::PaiMessageBox::Information(pServer->GetMainWindow(), title, message);
// pai::log::Info(_FLF(QObject::tr("ControlExtension::ShowMessage").toStdString() + message.toStdString()));
}