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

20 lines
345 B
C++

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