mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
31 lines
794 B
C++
31 lines
794 B
C++
#pragma once
|
|
|
|
#include "RegularContainer.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class DrawingContainer: public RegularContainer
|
|
{
|
|
public:
|
|
static const unsigned short TYPE_CODE_0xF002 = 0xF002;
|
|
|
|
DrawingContainer():
|
|
RegularContainer()
|
|
{
|
|
}
|
|
|
|
DrawingContainer( IBinaryReader* _reader, unsigned int size, unsigned int typeCode, unsigned int version, unsigned int instance ):
|
|
RegularContainer( _reader, size, typeCode, version, instance )
|
|
{
|
|
}
|
|
|
|
virtual ~DrawingContainer()
|
|
{
|
|
}
|
|
|
|
virtual Record* NewObject( IBinaryReader* _reader, unsigned int bodySize, unsigned int typeCode, unsigned int version, unsigned int instance )
|
|
{
|
|
return new DrawingContainer( _reader, bodySize, typeCode, version, instance );
|
|
}
|
|
};
|
|
} |