mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 02:48:12 +08:00
20 lines
303 B
C++
20 lines
303 B
C++
#ifndef CTRLFORM_H
|
|
#define CTRLFORM_H
|
|
|
|
#include "Ctrl.h"
|
|
#include "../HWPStream.h"
|
|
|
|
namespace HWP
|
|
{
|
|
class CCtrlForm : public CCtrl
|
|
{
|
|
int m_nSize;
|
|
public:
|
|
CCtrlForm(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
|
|
|
|
int GetSize() override;
|
|
};
|
|
}
|
|
|
|
#endif // CTRLFORM_H
|