logic: IDE Communication

Network code and controller added to communicate with IDE plugins. Does not include GUI integration though.
This commit is contained in:
Manuel Dobusch
2015-10-14 15:40:10 +02:00
parent 4e4cb25540
commit 0664f9a81b
31 changed files with 993 additions and 57 deletions
+16
View File
@@ -0,0 +1,16 @@
#include "QtNetworkFactory.h"
#include "QtIDECommunicationController.h"
QtNetworkFactory::QtNetworkFactory()
{
}
QtNetworkFactory::~QtNetworkFactory()
{
}
std::shared_ptr<IDECommunicationController> QtNetworkFactory::createIDECommunicationController() const
{
return std::make_shared<QtIDECommunicationController>(nullptr);
}