mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 06:24:28 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63565 954022d7-b5bf-4e40-9824-e11837661b57
29 lines
587 B
C++
29 lines
587 B
C++
#pragma once
|
|
|
|
#include <Logic/CompositeObject.h>
|
|
|
|
namespace XLS
|
|
{;
|
|
|
|
class ChartSheetSubstream;
|
|
typedef boost::shared_ptr<ChartSheetSubstream> ChartSheetSubstreamPtr;
|
|
|
|
// Logical representation of ChartSheetSubstream union of records
|
|
class ChartSheetSubstream: public CompositeObject
|
|
{
|
|
BASE_OBJECT_DEFINE_CLASS_NAME(ChartSheetSubstream)
|
|
public:
|
|
ChartSheetSubstream();
|
|
~ChartSheetSubstream();
|
|
|
|
BaseObjectPtr clone();
|
|
|
|
virtual const bool loadContent(BinProcessor& proc);
|
|
|
|
static const ElementType type = typeChartSheetSubstream;
|
|
|
|
};
|
|
|
|
} // namespace XLS
|
|
|