Files
core/ASCOfficeDocFile/DocDocxConverter/OfficeDrawing/RecordFactory.h

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 );
};
}