Add LZMA
This commit is contained in:
26
project/include/utils/LZMA.h
Normal file
26
project/include/utils/LZMA.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef LIME_UTILS_LZMA_H
|
||||
#define LIME_UTILS_LZMA_H
|
||||
|
||||
|
||||
#include <utils/Bytes.h>
|
||||
|
||||
|
||||
namespace lime {
|
||||
|
||||
|
||||
class LZMA {
|
||||
|
||||
|
||||
public:
|
||||
|
||||
static void Decode (Bytes* data, Bytes* result);
|
||||
static void Encode (Bytes* data, Bytes* result);
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user