2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2014-02-25 02:21:12 +04:00
|
|
|
#ifndef cmWIXPatch_h
|
|
|
|
#define cmWIXPatch_h
|
|
|
|
|
|
|
|
#include "cmWIXPatchParser.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmWIXSourceWriter.h"
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
/** \class cmWIXPatch
|
|
|
|
* \brief Class that maintains and applies patch fragments
|
|
|
|
*/
|
|
|
|
class cmWIXPatch
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmWIXPatch(cmCPackLog* logger);
|
|
|
|
|
2015-12-15 01:04:41 +03:00
|
|
|
bool LoadFragments(std::string const& patchFilePath);
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
void ApplyFragment(std::string const& id, cmWIXSourceWriter& writer);
|
|
|
|
|
|
|
|
bool CheckForUnappliedFragments();
|
|
|
|
|
|
|
|
private:
|
2015-10-12 22:53:08 +03:00
|
|
|
void ApplyElementChildren(const cmWIXPatchElement& element,
|
2016-05-16 17:34:04 +03:00
|
|
|
cmWIXSourceWriter& writer);
|
2015-10-12 22:53:08 +03:00
|
|
|
|
2014-02-25 02:21:12 +04:00
|
|
|
void ApplyElement(const cmWIXPatchElement& element,
|
2016-05-16 17:34:04 +03:00
|
|
|
cmWIXSourceWriter& writer);
|
2014-02-25 02:21:12 +04:00
|
|
|
|
|
|
|
cmCPackLog* Logger;
|
|
|
|
|
|
|
|
cmWIXPatchParser::fragment_map_t Fragments;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|