mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 18:07:07 -06:00
9.14
This commit is contained in:
committed by
Kornel Lesiński
parent
3dacb5eb8a
commit
708873490e
@@ -6,7 +6,6 @@
|
||||
#include "Common/MyCom.h"
|
||||
#include "Common/MyXml.h"
|
||||
|
||||
#include "../IArchive.h"
|
||||
#include "WimIn.h"
|
||||
|
||||
namespace NArchive {
|
||||
@@ -40,25 +39,35 @@ struct CXml
|
||||
{
|
||||
CByteBuffer Data;
|
||||
UInt16 VolIndex;
|
||||
|
||||
CObjectVector<CImageInfo> Images;
|
||||
|
||||
void ToUnicode(UString &s);
|
||||
void Parse();
|
||||
};
|
||||
|
||||
|
||||
class CHandler:
|
||||
public IInArchive,
|
||||
public CMyUnknownImp
|
||||
{
|
||||
CDatabase _db;
|
||||
CObjectVector<CVolume> _volumes;
|
||||
CObjectVector<CXml> _xmls;
|
||||
int _nameLenForStreams;
|
||||
bool _xmlInComments;
|
||||
|
||||
public:
|
||||
MY_UNKNOWN_IMP1(IInArchive)
|
||||
INTERFACE_IInArchive(;)
|
||||
};
|
||||
|
||||
private:
|
||||
CDatabase m_Database;
|
||||
CObjectVector<CVolume> m_Volumes;
|
||||
CObjectVector<CXml> m_Xmls;
|
||||
int m_NameLenForStreams;
|
||||
class COutHandler:
|
||||
public IOutArchive,
|
||||
public CMyUnknownImp
|
||||
{
|
||||
public:
|
||||
MY_UNKNOWN_IMP1(IOutArchive)
|
||||
INTERFACE_IOutArchive(;)
|
||||
};
|
||||
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user