blob: 1bd7cefcf938f095a211e6ba08769c21d045a673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef SLANG_LZ4_COMPRESSION_SYSTEM_H
#define SLANG_LZ4_COMPRESSION_SYSTEM_H
#include "slang-basic.h"
#include "slang-compression-system.h"
#include "../../slang-com-ptr.h"
namespace Slang
{
class LZ4CompressionSystem
{
public:
/* Get the LZ4 compression system singleton. */
static ICompressionSystem* getSingleton();
};
}
#endif
|