Network code and controller added to communicate with IDE plugins. Does not include GUI integration though.
16 lines
331 B
C++
16 lines
331 B
C++
#include "QtNetworkFactory.h"
|
|
|
|
#include "QtIDECommunicationController.h"
|
|
|
|
QtNetworkFactory::QtNetworkFactory()
|
|
{
|
|
}
|
|
|
|
QtNetworkFactory::~QtNetworkFactory()
|
|
{
|
|
}
|
|
|
|
std::shared_ptr<IDECommunicationController> QtNetworkFactory::createIDECommunicationController() const
|
|
{
|
|
return std::make_shared<QtIDECommunicationController>(nullptr);
|
|
} |