Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Compress/BWT/BlockSort.h')
-rwxr-xr-x7zip/Compress/BWT/BlockSort.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/7zip/Compress/BWT/BlockSort.h b/7zip/Compress/BWT/BlockSort.h
deleted file mode 100755
index 599c3b60..00000000
--- a/7zip/Compress/BWT/BlockSort.h
+++ /dev/null
@@ -1,29 +0,0 @@
-// BlockSort.h
-
-#ifndef __BLOCKSORT_H
-#define __BLOCKSORT_H
-
-#include "Common/Types.h"
-
-namespace NCompress {
-
-class CBlockSorter
-{
- UInt32 *Groups;
- UInt32 *Flags;
- UInt32 BlockSize;
- UInt32 NumSortedBytes;
- UInt32 BlockSizeMax;
- UInt32 SortGroup(UInt32 groupOffset, UInt32 groupSize, UInt32 mask, UInt32 maskSize);
-public:
- UInt32 *Indices;
- CBlockSorter(): Indices(0) {}
- ~CBlockSorter() { Free(); }
- bool Create(UInt32 blockSizeMax);
- void Free();
- UInt32 Sort(const Byte *data, UInt32 blockSize);
-};
-
-}
-
-#endif