logic: cli for indexing and configure

This commit is contained in:
Andreas Stallinger
2017-08-09 13:34:20 +02:00
parent 802153883e
commit 610c8b2901
@@ -0,0 +1,20 @@
#ifndef MESSAGE_QUIT_APPLICATION_H
#define MESSAGE_QUIT_APPLICATION_H
#include "utility/messaging/Message.h"
class MessageQuitApplication
: public Message<MessageQuitApplication>
{
public:
MessageQuitApplication()
{
}
static const std::string getStaticType()
{
return "MessageQuitApplication";
}
};
#endif // MESSAGE_QUIT_APPLICATION_H