summaryrefslogtreecommitdiffstats
path: root/src/libs/7zip/unix/CPP/Common/MyMap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/7zip/unix/CPP/Common/MyMap.h')
-rw-r--r--src/libs/7zip/unix/CPP/Common/MyMap.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/libs/7zip/unix/CPP/Common/MyMap.h b/src/libs/7zip/unix/CPP/Common/MyMap.h
deleted file mode 100644
index d0dd43f53..000000000
--- a/src/libs/7zip/unix/CPP/Common/MyMap.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// MyMap.h
-
-#ifndef __COMMON_MYMAP_H
-#define __COMMON_MYMAP_H
-
-#include "MyVector.h"
-#include "Types.h"
-
-class CMap32
-{
- struct CNode
- {
- UInt32 Key;
- UInt32 Keys[2];
- UInt32 Values[2];
- UInt16 Len;
- Byte IsLeaf[2];
- };
- CRecordVector<CNode> Nodes;
-
-public:
-
- void Clear() { Nodes.Clear(); }
- bool Find(UInt32 key, UInt32 &valueRes) const;
- bool Set(UInt32 key, UInt32 value); // returns true, if there is such key already
-};
-
-#endif