Files
core/HwpFile/HwpDoc/Paragraph/CtrlCharacter.cpp
2024-12-03 20:12:50 +03:00

18 lines
399 B
C++

#include "CtrlCharacter.h"
namespace HWP
{
CCtrlCharacter::CCtrlCharacter(const std::string& sCtrlID, ECtrlCharType eCtrlChar)
: CCtrl(sCtrlID), m_eCtrlChar(eCtrlChar)
{}
CCtrlCharacter::CCtrlCharacter(const std::string& sCtrlID, ECtrlCharType eCtrlChar, int nCharShapeID)
: CCtrl(sCtrlID), m_eCtrlChar(eCtrlChar), m_nCharShapeID(nCharShapeID)
{}
int CCtrlCharacter::GetSize()
{
return 1;
}
}