mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 03:55:47 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@68020 954022d7-b5bf-4e40-9824-e11837661b57
31 lines
692 B
C++
31 lines
692 B
C++
#pragma once
|
|
|
|
#include <Logic/CompositeObject.h>
|
|
|
|
namespace XLS
|
|
{;
|
|
class MacroSheetSubstream;
|
|
typedef boost::shared_ptr<MacroSheetSubstream> MacroSheetSubstreamPtr;
|
|
// Logical representation of MacroSheetSubstream union of records
|
|
class MacroSheetSubstream: public CompositeObject
|
|
{
|
|
BASE_OBJECT_DEFINE_CLASS_NAME(MacroSheetSubstream)
|
|
public:
|
|
MacroSheetSubstream();
|
|
~MacroSheetSubstream();
|
|
|
|
BaseObjectPtr clone();
|
|
|
|
virtual const bool loadContent(BinProcessor& proc);
|
|
|
|
static const ElementType type = typeMacroSheetSubstream;
|
|
|
|
BaseObjectPtr m_GLOBALS;
|
|
BaseObjectPtr m_OBJECTS;
|
|
std::vector<BaseObjectPtr> m_arCUSTOMVIEW;
|
|
|
|
};
|
|
|
|
} // namespace XLS
|
|
|