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