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

27 lines
573 B
C++

#ifndef CTRLNOTE_H
#define CTRLNOTE_H
#include "HWPPargraph.h"
#include "Ctrl.h"
namespace HWP
{
class CCtrlNote : public CCtrl
{
VECTOR<CHWPPargraph*> m_arParas;
public:
CCtrlNote();
CCtrlNote(const HWP_STRING& sCtrlID);
CCtrlNote(const HWP_STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
CCtrlNote(const HWP_STRING& sCtrlID, CXMLReader& oReader, EHanType eType);
ECtrlObjectType GetCtrlType() const override;
VECTOR<const CHWPPargraph*> GetParagraphs() const;
void AddParagraph(CHWPPargraph* pParagraph);
};
}
#endif // CTRLNOTE_H