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