You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
// Merger.h
|
|
|
|
|
// Implementation of the Class Merger
|
|
|
|
|
// Created on: 19-<EFBFBD><EFBFBD><EFBFBD>-2009 12:27:54
|
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#if !defined Merger_h
|
|
|
|
|
#define Merger_h
|
|
|
|
|
|
|
|
|
|
#include "Document.h"
|
|
|
|
|
#include "Parser.h"
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
|
|
// structure defines parameter of merge
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace merge_lib
|
|
|
|
|
{
|
|
|
|
|
class Document;
|
|
|
|
|
class Merger
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
Merger();
|
|
|
|
|
~Merger();
|
|
|
|
|
|
|
|
|
|
//this method should be called every time the "Add" button is clicked
|
|
|
|
|
void addBaseDocument(const char *docName);
|
|
|
|
|
|
|
|
|
|
void addOverlayDocument(const char *docName);
|
|
|
|
|
|
|
|
|
|
void saveMergedDocumentsAs(const char *outDocumentName);
|
|
|
|
|
|
|
|
|
|
void merge(const char *overlayDocName, const MergeDescription & pagesToMerge);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
std::map<std::string, Document * > _baseDocuments;
|
|
|
|
|
static Parser _parser;
|
|
|
|
|
Document * _overlayDocument;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
#endif //
|