mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
17 lines
315 B
C++
17 lines
315 B
C++
#pragma once
|
|
|
|
#include "DocumentMapping.h"
|
|
#include "TableInfo.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class HeaderMapping: public DocumentMapping
|
|
{
|
|
private:
|
|
CharacterRange _hdr;
|
|
|
|
public:
|
|
HeaderMapping( ConversionContext* ctx, CharacterRange hdr );
|
|
virtual void Apply( IVisitable* visited );
|
|
};
|
|
} |