OpenMW
|
00001 #ifndef CSM_DOC_SAVING_H 00002 #define CSM_DOC_SAVING_H 00003 00004 #include <boost/filesystem/path.hpp> 00005 00006 #include "operation.hpp" 00007 #include "savingstate.hpp" 00008 00009 namespace CSMDoc 00010 { 00011 class Document; 00012 00013 class Saving : public Operation 00014 { 00015 Q_OBJECT 00016 00017 Document& mDocument; 00018 SavingState mState; 00019 00020 public: 00021 00022 Saving (Document& document, const boost::filesystem::path& projectPath); 00023 00024 }; 00025 } 00026 00027 #endif