mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
12 lines
264 B
C++
12 lines
264 B
C++
#pragma once
|
|
|
|
#include "ITextItem.h"
|
|
|
|
namespace AVSDocFileFormat
|
|
{
|
|
struct ITableItem: public ITextItem
|
|
{
|
|
virtual vector<PapxInFkp> GetAllMarkersProperties( vector<unsigned int>* allMarkersOffsets ) const = 0;
|
|
virtual ~ITableItem() {};
|
|
};
|
|
} |