Files
core/Common/cppcf/cfstorage.cpp
2022-07-04 23:03:48 +03:00

30 lines
502 B
C++

#include "cfstorage.h"
using namespace CFCPP;
CFStorage::CFStorage()
{
}
RedBlackTree::RBTree CFStorage::getChildren() const
{
if (children == nullptr)
{
//if (this.CompoundFile.HasSourceStream)
//{
children = LoadChildren(this.DirEntry.SID);
//}
//else
if (children == null)
{
children = this.CompoundFile.CreateNewTree();
}
}
return children;
}
RedBlackTree::RBTree CFStorage::LoadChildren(int SID)
{
}