data: saving for projectsettings

<description>
This commit is contained in:
Andreas Stallinger
2014-11-03 16:34:42 +01:00
parent 38d9ec07a5
commit 3441b6a8f4
7 changed files with 92 additions and 1 deletions
@@ -0,0 +1,22 @@
#ifndef MESSAGE_SAVE_PROJECT_H
#define MESSAGE_SAVE_PROJECT_H
#include "utility/messaging/Message.h"
class MessageSaveProject: public Message<MessageSaveProject>
{
public:
MessageSaveProject(const std::string& filePath)
: projectSettingsFilePath(filePath)
{
}
static const std::string getStaticType()
{
return "MessageSaveProject";
}
const std::string projectSettingsFilePath;
};
#endif // MESSAGE_SAVE_PROJECT_H