mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
26 lines
466 B
C++
26 lines
466 B
C++
#ifndef HWPFILE_H
|
|
#define HWPFILE_H
|
|
|
|
#include <string>
|
|
|
|
#ifndef HWPFILE_USE_DYNAMIC_LIBRARY
|
|
#define HWP_FILE_DECL_EXPORT
|
|
#else
|
|
#include "../../DesktopEditor/common/base_export.h"
|
|
#define HWP_FILE_DECL_EXPORT Q_DECL_EXPORT
|
|
#endif
|
|
|
|
namespace HWP { class CHWPFile_Private; }
|
|
class HWP_FILE_DECL_EXPORT CHWPFile
|
|
{
|
|
HWP::CHWPFile_Private *m_pInternal;
|
|
public:
|
|
CHWPFile(const std::wstring& wsFileName);
|
|
~CHWPFile();
|
|
|
|
bool Open();
|
|
void Close();
|
|
};
|
|
|
|
#endif // HWPFILE_H
|