Files
core/ASCOfficeXlsFile2/source/XlsFormat/Logic/MacroSheetSubstream.h
Elen.Subbotina 6f0f09cddc XlsFormat - autofilters & custom views
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@68020 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:55:51 +03:00

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