mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 01:04:34 +08:00
27 lines
588 B
C++
27 lines
588 B
C++
#pragma once
|
|
#ifndef ODT_CONTENT_TABLE_CELL_ITEM_BASE_INCLUDE_H_
|
|
#define ODT_CONTENT_TABLE_CELL_ITEM_BASE_INCLUDE_H_
|
|
|
|
#include "./../WritingElement.h"
|
|
|
|
|
|
namespace Odt
|
|
{
|
|
namespace Content
|
|
{
|
|
class TableCellItemBase : public WritingElement
|
|
{
|
|
public:
|
|
virtual const bool hasNote() const = 0;
|
|
virtual const bool hasList() const = 0;
|
|
|
|
virtual void setNumCol(const int num) = 0;
|
|
virtual const int getNumCol() const = 0;
|
|
|
|
public:
|
|
int m_numCol;
|
|
};
|
|
} // namespace Content
|
|
} // namespace Odt
|
|
|
|
#endif // ODT_CONTENT_TABLE_CELL_ITEM_BASE_INCLUDE_H_
|