1 // ChmHandler.h 2 3 #ifndef ZIP7_INC_ARCHIVE_CHM_HANDLER_H 4 #define ZIP7_INC_ARCHIVE_CHM_HANDLER_H 5 6 #include "../../../Common/MyCom.h" 7 8 #include "../IArchive.h" 9 10 #include "ChmIn.h" 11 12 namespace NArchive { 13 namespace NChm { 14 15 Z7_CLASS_IMP_CHandler_IInArchive_0 16 17 CFilesDatabase m_Database; 18 CMyComPtr<IInStream> m_Stream; 19 bool _help2; 20 UInt32 m_ErrorFlags; 21 public: CHandler(bool help2)22 CHandler(bool help2): _help2(help2) {} 23 }; 24 25 }} 26 27 #endif 28