mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 02:48:12 +08:00
21 lines
229 B
C++
21 lines
229 B
C++
#pragma once
|
|
#include "compoundfile.h"
|
|
|
|
namespace CFCPP
|
|
{
|
|
class CFItem
|
|
{
|
|
public:
|
|
CFItem();
|
|
|
|
protected:
|
|
void CheckDisposed()
|
|
{
|
|
if (compoudFile.SizeFile() == 0)
|
|
}
|
|
|
|
public:
|
|
CompoundFile compoudFile;
|
|
};
|
|
}
|