mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 03:46:15 +08:00
FileChecker для входных файлов (linux) git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62308 954022d7-b5bf-4e40-9824-e11837661b57
31 lines
732 B
C++
31 lines
732 B
C++
#pragma once
|
|
|
|
#include "WordDocument.h"
|
|
|
|
#include "TableMapping.h"
|
|
|
|
#include "StyleSheetMapping.h"
|
|
#include "FontTableMapping.h"
|
|
#include "FootnotesMapping.h"
|
|
#include "EndnotesMapping.h"
|
|
#include "NumberingMapping.h"
|
|
#include "CommentsMapping.h"
|
|
#include "SettingsMapping.h"
|
|
#include "MainDocumentMapping.h"
|
|
#include "WordprocessingDocument.h"
|
|
#include "ConversionContext.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class Converter
|
|
{
|
|
public:
|
|
Converter();
|
|
~Converter();
|
|
|
|
long LoadAndConvert(const CString& strSrcFile, const CString& strDstDirectory, const ProgressCallback* progress);
|
|
private:
|
|
long Convert(WordDocument* doc, WordprocessingDocument* docx, const ProgressCallback* progress);
|
|
};
|
|
}
|