mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
21 lines
460 B
C++
21 lines
460 B
C++
#pragma once
|
|
|
|
#include "DocumentMapping.h"
|
|
#include "SectionPropertiesMapping.h"
|
|
#include "TableInfo.h"
|
|
#include "TableMapping.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class MainDocumentMapping : public DocumentMapping
|
|
{
|
|
public:
|
|
MainDocumentMapping (ConversionContext* ctx, const ProgressCallback* ffCallBack);
|
|
virtual ~MainDocumentMapping();
|
|
virtual void Apply (IVisitable* visited);
|
|
|
|
private:
|
|
|
|
const ProgressCallback* m_ffCallBack;
|
|
};
|
|
} |