mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@61916 954022d7-b5bf-4e40-9824-e11837661b57
This commit is contained in:
committed by
Alexander Trofimov
parent
2c14c02d7e
commit
809065e725
32
ASCOfficeDocFile/DocDocxConverter/Converter.h
Normal file
32
ASCOfficeDocFile/DocDocxConverter/Converter.h
Normal file
@ -0,0 +1,32 @@
|
||||
#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"
|
||||
|
||||
extern ASCOfficeCriticalSection g_oCriticalSection;
|
||||
|
||||
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);
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user