ui: clear button logview

This commit is contained in:
Andreas Stallinger
2016-11-28 16:01:50 +01:00
parent 16636cc875
commit 0fad00e6f2
5 changed files with 37 additions and 5 deletions
@@ -0,0 +1,20 @@
#ifndef MESSAGE_CLEAR_LOG_VIEW_H
#define MESSAGE_CLEAR_LOG_VIEW_H
#include "utility/messaging/Message.h"
class MessageClearLogView:
public Message<MessageClearLogView>
{
public:
MessageClearLogView()
{
}
static const std::string getStaticType()
{
return "MessageClearLogView";
}
};
#endif // MESSAGE_CLEAR_LOG_VIEW_H