Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

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