src: fixed clang warnings, fixed undefined symbols logs, fixed code convention violations

This commit is contained in:
Eberhard Graether
2014-07-21 01:26:35 +02:00
parent 0c570d54af
commit 0d46de871a
30 changed files with 166 additions and 172 deletions
@@ -4,20 +4,19 @@
#include <set>
#include <vector>
#include "utility/messaging/MessageListener.h"
#include "utility/messaging/type/MessageActivateToken.h"
#include "component/controller/Controller.h"
#include "component/controller/GraphLayouter.h"
#include "utility/messaging/MessageListener.h"
#include "utility/messaging/type/MessageActivateToken.h"
struct DummyNode;
struct DummyEdge;
class GraphView;
class GraphAccess;
class GraphController:
public Controller,
public MessageListener<MessageActivateToken>
class GraphController
: public Controller
, public MessageListener<MessageActivateToken>
{
public:
GraphController(GraphAccess* graphAccess);
@@ -41,5 +40,4 @@ private:
GraphAccess* m_graphAccess;
};
#endif // GRAPH_CONTROLLER_H