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
+5
View File
@@ -3,6 +3,8 @@
#include "component/view/View.h"
class CodeController;
class CodeView: public View
{
public:
@@ -13,6 +15,9 @@ public:
virtual void addCodeSnippet(std::string str) = 0;
virtual void clearCodeSnippets() = 0;
private:
CodeController* getController();
};
#endif // CODE_VIEW_H