blob: 65fd88ac373106e2796d4ee18b4e7e3a6f2c2667 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef __ASURA_COMPRESSOR_H__
#define __ASURA_COMPRESSOR_H__
#include "../scripting/portable.hpp"
namespace AsuraEngine
{
namespace IO
{
class Compressor ASURA_FINAL
: public AEScripting::Portable<Compressor>
{
public:
LUAX_DECL_SINGLETON(Compressor);
private:
LUAX_DECL_METHOD(_Compress);
LUAX_DECL_METHOD(_Decompress);
};
}
}
#endif
|