ui: add menu entry to close the current project (issue #722)

This commit is contained in:
mlangkabel
2019-10-18 13:05:27 +02:00
committed by Eberhard Graether
parent dc24bae943
commit 6b692ff0e9
13 changed files with 70 additions and 14 deletions
@@ -0,0 +1,27 @@
#ifndef MESSAGE_CLOSE_PROJECT_H
#define MESSAGE_CLOSE_PROJECT_H
#include "RefreshInfo.h"
#include "FilePath.h"
#include "Message.h"
class MessageCloseProject
: public Message<MessageCloseProject>
{
public:
MessageCloseProject()
{
}
static const std::string getStaticType()
{
return "MessageCloseProject";
}
virtual void print(std::wostream& os) const
{
}
};
#endif // MESSAGE_CLOSE_PROJECT_H