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
+7 -1
View File
@@ -11,6 +11,8 @@
#include "utility/messaging/type/MessageRefresh.h"
#include "utility/messaging/type/MessageSaveProject.h"
class IDECommunicationController;
class NetworkFactory;
class ViewFactory;
class MainView;
class StorageCache;
@@ -22,7 +24,7 @@ class Application
, public MessageListener<MessageSaveProject>
{
public:
static std::shared_ptr<Application> create(ViewFactory* viewFactory);
static std::shared_ptr<Application> create(ViewFactory* viewFactory, NetworkFactory* networkFactory);
static void loadSettings();
~Application();
@@ -46,6 +48,10 @@ private:
std::shared_ptr<MainView> m_mainView;
std::shared_ptr<ComponentManager> m_componentManager;
std::shared_ptr<IDECommunicationController> m_ideCommunicationController;
bool m_isInitialParse;
};
#endif // APPLICATION_H