summaryrefslogtreecommitdiffstats
path: root/src/libs/7zip/unix/CPP/Common/MyMap.h
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@digia.com>2013-04-30 14:04:20 +0200
committerKarsten Heimrich <karsten.heimrich@digia.com>2013-05-02 14:36:21 +0200
commit323c7f177ec76fa64dfe239806d0f5ba365c51c7 (patch)
treecdb69b2c55f39e4d3aa28053de7ac7d650170df3 /src/libs/7zip/unix/CPP/Common/MyMap.h
parentbf99b6d9d595fd229174645c8c22abc23da81f5a (diff)
Reset to only use the basic LZMA SDK (Unix).
Change-Id: Ic7607229197f74cdf88c46684b1413e00466185d Reviewed-by: Niels Weber <niels.weber@digia.com>
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