#pragma once #include 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