mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 01:11:43 +08:00
22 lines
252 B
C++
22 lines
252 B
C++
#include "Ctrl.h"
|
|
|
|
namespace HWP
|
|
{
|
|
CCtrl::CCtrl()
|
|
{}
|
|
|
|
CCtrl::CCtrl(const std::string& sCtrlID)
|
|
: m_sCtrlID(sCtrlID)
|
|
{}
|
|
|
|
void CCtrl::SetID(const std::string& sCtrlID)
|
|
{
|
|
m_sCtrlID = sCtrlID;
|
|
}
|
|
|
|
std::string CCtrl::GetID() const
|
|
{
|
|
return m_sCtrlID;
|
|
}
|
|
}
|