blob: 6dc96af5d1db5933497bcda6d2160fa14a3c5fe1 (
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
|