mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 01:04:34 +08:00
23 lines
405 B
C++
23 lines
405 B
C++
#ifndef CBOOKCONTENTITEM_H
|
|
#define CBOOKCONTENTITEM_H
|
|
|
|
#include <iostream>
|
|
|
|
#include "../../DesktopEditor/xml/include/xmlutils.h"
|
|
|
|
class CBookContentItem
|
|
{
|
|
public:
|
|
std::wstring m_sID;
|
|
std::wstring m_sLinear;
|
|
CBookContentItem();
|
|
~CBookContentItem();
|
|
|
|
void Clear();
|
|
|
|
bool ReadContentItem(XmlUtils::CXmlLiteReader &oXmlLiteReader, const int& depth);
|
|
|
|
};
|
|
|
|
#endif // CBOOKCONTENTITEM_H
|