DPS/DataPlatform/ProjectManager.h

16 lines
333 B
C
Raw Normal View History

2025-06-23 10:41:33 +08:00
#pragma once
#include "EventModule.h"
/**
2025-06-23 18:01:09 +08:00
* @brief
2025-06-23 10:41:33 +08:00
*/
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);
};