Files
core/HwpFile/HwpDoc/Paragraph/CtrlClick.h

21 lines
337 B
C++

#ifndef CTRLCLICK_H
#define CTRLCLICK_H
#include "Ctrl.h"
#include "../HWPStream.h"
namespace HWP
{
class CCtrlClick : public CCtrl
{
int m_nSize;
HWP_STRING m_sClickHereStr;
public:
CCtrlClick(const HWP_STRING& sCtrlId, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
int GetSize() override;
};
}
#endif // CTRLCLICK_H