diff --git a/src/lib/utility/messaging/type/MessageQuitApplication.h b/src/lib/utility/messaging/type/MessageQuitApplication.h new file mode 100644 index 00000000..368c5094 --- /dev/null +++ b/src/lib/utility/messaging/type/MessageQuitApplication.h @@ -0,0 +1,20 @@ +#ifndef MESSAGE_QUIT_APPLICATION_H +#define MESSAGE_QUIT_APPLICATION_H + +#include "utility/messaging/Message.h" + +class MessageQuitApplication + : public Message +{ +public: + MessageQuitApplication() + { + } + + static const std::string getStaticType() + { + return "MessageQuitApplication"; + } +}; + +#endif // MESSAGE_QUIT_APPLICATION_H