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