logic: MessageFlushUpdates to send new Graph to GraphView when restoring Graph

This commit is contained in:
Eberhard Graether
2015-07-30 20:24:18 +02:00
parent 5f25311389
commit 165f32f6a6
7 changed files with 84 additions and 43 deletions
@@ -0,0 +1,20 @@
#ifndef MESSAGE_FLUSH_UPDATES_H
#define MESSAGE_FLUSH_UPDATES_H
#include "utility/messaging/Message.h"
class MessageFlushUpdates:
public Message<MessageFlushUpdates>
{
public:
MessageFlushUpdates()
{
}
static const std::string getStaticType()
{
return "MessageFlushUpdates";
}
};
#endif // MESSAGE_FLUSH_UPDATES_H