mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-21 02:22:41 +08:00
21 lines
267 B
C++
21 lines
267 B
C++
#ifndef CTRLEMPTY_H
|
|
#define CTRLEMPTY_H
|
|
|
|
#include "Ctrl.h"
|
|
|
|
namespace HWP
|
|
{
|
|
class CCtrlEmpty : public CCtrl
|
|
{
|
|
int m_nSize;
|
|
public:
|
|
CCtrlEmpty();
|
|
CCtrlEmpty(const HWP_STRING& sCtrlID);
|
|
|
|
int GetSize() override;
|
|
void SetSize(int nSize);
|
|
};
|
|
}
|
|
|
|
#endif // CTRLEMPTY_H
|