logic: code controller communication

- Replaced CodeAccess with LocationAccess.
- Implemented basic functionality for CodeController.
- Added messaging to the project.
- Added QtThreadedFunctor to enable our Messaging thread to invoke calls on the QtThread.
- Added GraphController.

fortune cookie message = Good news from someone dear is coming soon.
This commit is contained in:
malte_langkabel
2014-07-02 16:42:33 +02:00
parent a8e32af5dd
commit 400e2629d2
37 changed files with 441 additions and 78 deletions
+1 -6
View File
@@ -3,8 +3,6 @@
#include <memory>
#include "data/access/CodeAccess.h"
#include "data/access/GraphAccess.h"
#include "data/Storage.h"
#include "ProjectSettings.h"
@@ -12,8 +10,7 @@ class Project
{
public:
static std::shared_ptr<Project> create(
std::shared_ptr<CodeAccess> codeAccess,
std::shared_ptr<GraphAccess> graphAccess
std::shared_ptr<Storage> storage
);
~Project();
@@ -27,8 +24,6 @@ private:
Project operator=(const Project&);
std::shared_ptr<Storage> m_storage;
std::shared_ptr<CodeAccess> m_codeAccess;
std::shared_ptr<GraphAccess> m_graphAccess;
};
#endif // PROJECT_H