17 lines
385 B
C++
17 lines
385 B
C++
#include "DataModelGraphView.h"
|
|
#include "ProjectModel.h"
|
|
|
|
DataModelGraphView::DataModelGraphView(QObject* parent)
|
|
: EventModule("DataModelGraphView")
|
|
{
|
|
addShareEventModule(new ProjectModel());
|
|
}
|
|
|
|
DataModelGraphView::~DataModelGraphView()
|
|
{
|
|
}
|
|
bool DataModelGraphView::onMessage(const std::string& eventName, json& parameter)
|
|
{
|
|
return EventModule::onMessage(eventName, parameter);
|
|
}
|