mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
18 lines
346 B
C++
18 lines
346 B
C++
#pragma once
|
|
|
|
#include "FileInformationBlock.h"
|
|
#include "ListLevel.h"
|
|
#include "ListData.h"
|
|
#include "IVisitable.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class ListTable: public IVisitable
|
|
{
|
|
public:
|
|
list<ListData*> listData;
|
|
|
|
virtual ~ListTable();
|
|
ListTable( FileInformationBlock* fib, POLE::Stream* tableStream );
|
|
};
|
|
} |