mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63540 954022d7-b5bf-4e40-9824-e11837661b57
27 lines
445 B
C++
27 lines
445 B
C++
#pragma once
|
|
|
|
#include <Logic/CompositeObject.h>
|
|
|
|
namespace XLS
|
|
{;
|
|
|
|
|
|
// Logical representation of AnySubstream union of records
|
|
class AnySubstream: public CompositeObject
|
|
{
|
|
BASE_OBJECT_DEFINE_CLASS_NAME(AnySubstream)
|
|
public:
|
|
AnySubstream();
|
|
~AnySubstream();
|
|
|
|
BaseObjectPtr clone();
|
|
|
|
virtual const bool loadContent(BinProcessor& proc);
|
|
|
|
static const ElementType type = typeAnySubstream;
|
|
|
|
};
|
|
|
|
} // namespace XLS
|
|
|