mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 14:22:36 +08:00
12 lines
245 B
C++
12 lines
245 B
C++
#pragma once
|
|
|
|
#include "Record.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
struct RecordFactory
|
|
{
|
|
static Record* ReadRecord( IBinaryReader* reader, unsigned int siblingIdx );
|
|
static Record* NewRecord( unsigned short typeCode );
|
|
};
|
|
} |