Files
core/ASCOfficeXlsFile2/source/XlsFormat/Logic/AnySubstream.cpp
Elen.Subbotina 29c989e784 чтение xls файлов
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@58816 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-20 23:19:50 +03:00

51 lines
629 B
C++

#include "precompiled_xls.h"
#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