mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
16 lines
193 B
C++
16 lines
193 B
C++
#pragma once
|
|
|
|
#include "BaseItem.h"
|
|
|
|
namespace NSDocxRenderer
|
|
{
|
|
class CTable : public CBaseItem
|
|
{
|
|
CTable() = default;
|
|
virtual ~CTable() = default;
|
|
};
|
|
} // namespace NSDocxRenderer
|
|
|
|
|
|
|