ui: add menu entry to close the current project (issue #722)
This commit is contained in:
committed by
Eberhard Graether
parent
dc24bae943
commit
6b692ff0e9
@@ -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
|
||||
Reference in New Issue
Block a user