mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63606 954022d7-b5bf-4e40-9824-e11837661b57
51 lines
601 B
C++
51 lines
601 B
C++
|
|
#include "AnySubstream.h"
|
|
#include <Logic/AnyObject.h>
|
|
|
|
namespace XLS
|
|
{;
|
|
|
|
|
|
AnySubstream::AnySubstream()
|
|
{
|
|
}
|
|
|
|
|
|
AnySubstream::~AnySubstream()
|
|
{
|
|
}
|
|
|
|
|
|
BaseObjectPtr AnySubstream::clone()
|
|
{
|
|
return BaseObjectPtr(new AnySubstream(*this));
|
|
}
|
|
|
|
|
|
// AnySubstream =
|
|
const bool AnySubstream::loadContent(BinProcessor& proc)
|
|
{
|
|
/*
|
|
try
|
|
{
|
|
while(1)
|
|
{
|
|
AnyObject any(own_tag);
|
|
any.read(reader, p_MANDATORY);
|
|
|
|
if(any.tag_name == "EOF")
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
catch(EXCEPT::RT::CompoundFileFormatError&)
|
|
{
|
|
}
|
|
*/
|
|
return true;
|
|
}
|
|
|
|
} // namespace XLS
|
|
|