Files
core/HwpFile/HwpDoc/HWPElements/HWPRecordCtrlHeader.h
2024-12-16 21:05:10 +03:00

21 lines
417 B
C++

#ifndef HWPRECORDCTRLHEADER_H
#define HWPRECORDCTRLHEADER_H
#include "HWPRecord.h"
#include "../Paragraph/Ctrl.h"
#include "../HWPStream.h"
namespace HWP
{
class CHWPRecordCtrlHeader : public CHWPRecord
{
public:
CHWPRecordCtrlHeader(int nTagNum, int nLevel, int nSize);
static CCtrl* Parse(int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
};
}
#endif // HWPRECORDCTRLHEADER_H