16 lines
323 B
C++
16 lines
323 B
C++
#pragma once
|
|
#include "EventModule.h"
|
|
/**
|
|
* @brief 项目管理消息处理模块
|
|
*/
|
|
class ProjectManager : public EventModule
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ProjectManager(QObject* parent);
|
|
~ProjectManager();
|
|
protected:
|
|
void contextMenu(const json& request, QMenu* menu);
|
|
bool onMessage(const std::string& eventName, json& parameter);
|
|
};
|