3 #ifndef __7Z_METHOD_ID_H
4 #define __7Z_METHOD_ID_H
6 #include "../../../Common/String.h"
7 #include "../../../Common/Types.h"
12 const int kMethodIDSize
= 15;
16 Byte ID
[kMethodIDSize
];
18 UString
ConvertToString() const;
19 bool ConvertFromString(const UString
&srcString
);
22 bool operator==(const CMethodID
&a1
, const CMethodID
&a2
);
24 inline bool operator!=(const CMethodID
&a1
, const CMethodID
&a2
)
25 { return !(a1
== a2
); }