summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-utils/io/compressor.h
blob: 30a074c68cb0ea0c9a99871e754a599fb5aa8365 (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
29
30
#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