@@ -489,6 +489,7 @@ add_files(
|
||||
utility/messaging/type/graph/MessageGraphNodeHide.h
|
||||
utility/messaging/type/graph/MessageGraphNodeMove.h
|
||||
utility/messaging/type/graph/MessageScrollGraph.h
|
||||
utility/messaging/type/graph/MessageSaveAsImage.h
|
||||
|
||||
utility/messaging/type/history/MessageHistoryToPosition.h
|
||||
utility/messaging/type/history/MessageHistoryRedo.h
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
#ifndef MESSAGE_SAVE_AS_IMAGE_H
|
||||
#define MESSAGE_SAVE_AS_IMAGE_H
|
||||
|
||||
#include "Message.h"
|
||||
|
||||
|
||||
class MessageSaveAsImage: public Message<MessageSaveAsImage>
|
||||
{
|
||||
public:
|
||||
MessageSaveAsImage(QString path) : path(path) {}
|
||||
|
||||
static const std::string getStaticType()
|
||||
{
|
||||
return "MessageSaveAsImage";
|
||||
}
|
||||
|
||||
QString path;
|
||||
};
|
||||
|
||||
#endif /* MESSAGE_SAVE_AS_IMAGE_H */
|
||||
Reference in New Issue
Block a user