mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
20 lines
419 B
C++
20 lines
419 B
C++
#ifndef HWPRECORDFORMOBJECT_H
|
|
#define HWPRECORDFORMOBJECT_H
|
|
|
|
#include "../Paragraph/CtrlForm.h"
|
|
#include "HWPRecord.h"
|
|
|
|
namespace HWP
|
|
{
|
|
class CHWPRecordFormObject : public CHWPRecord
|
|
{
|
|
static HWP_STRING m_sFormStr;
|
|
public:
|
|
CHWPRecordFormObject(int nTagNum, int nLevel, int nSize);
|
|
|
|
static int ParseCtrl(CCtrlForm& oForm, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
|
|
};
|
|
}
|
|
|
|
#endif // HWPRECORDFORMOBJECT_H
|