mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-22 12:39:59 +00:00
(cherry picked from commit 904ad949524864239f4b1f428d03a947360728a0) Conflicts: apps/opencs/CMakeLists.txt apps/opencs/model/tools/tools.cpp
29 lines
504 B
C++
29 lines
504 B
C++
#ifndef CSM_TOOLS_MERGEOPERATION_H
|
|
#define CSM_TOOLS_MERGEOPERATION_H
|
|
|
|
#include <boost/filesystem/path.hpp>
|
|
|
|
#include "../doc/operation.hpp"
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Document;
|
|
}
|
|
|
|
namespace CSMTools
|
|
{
|
|
class MergeOperation : public CSMDoc::Operation
|
|
{
|
|
|
|
|
|
public:
|
|
|
|
MergeOperation (CSMDoc::Document& document);
|
|
|
|
/// \attention Do not call this function while a merge is running.
|
|
void setTarget (const boost::filesystem::path& target);
|
|
};
|
|
}
|
|
|
|
#endif
|