blob: efed59e617b5fbde14d2d12182701e9b4b8b6b6b (
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_DEFLATE_COMPRESSION_SYSTEM_H
#define SLANG_DEFLATE_COMPRESSION_SYSTEM_H
#include "slang-basic.h"
#include "slang-compression-system.h"
#include "slang-com-ptr.h"
namespace Slang
{
class DeflateCompressionSystem
{
public:
/* Get the Deflate compression system singleton. */
static ICompressionSystem* getSingleton();
};
}
#endif
|