Files
core/HwpFile/HWPFile.h

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