From e0024d9ea688ee91a77abc0e28c5ea24b13ca67d Mon Sep 17 00:00:00 2001 From: Amlal Date: Mon, 28 Oct 2024 07:01:58 +0100 Subject: IMP: Refactor whole source code to make it even. - That is because previously the source was both in lowercase and lettercase. Signed-off-by: Amlal --- dev/ZKAKit/CompressKit/GZip.h | 18 ++++++++++++++++++ dev/ZKAKit/CompressKit/RLE.h | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 dev/ZKAKit/CompressKit/GZip.h create mode 100644 dev/ZKAKit/CompressKit/RLE.h (limited to 'dev/ZKAKit/CompressKit') diff --git a/dev/ZKAKit/CompressKit/GZip.h b/dev/ZKAKit/CompressKit/GZip.h new file mode 100644 index 00000000..3a1144f2 --- /dev/null +++ b/dev/ZKAKit/CompressKit/GZip.h @@ -0,0 +1,18 @@ +/* ------------------------------------------- + + Copyright ZKA Web Services Co. + +------------------------------------------- */ + +#ifndef __KERNELKIT_GZIP_H__ +#define __KERNELKIT_GZIP_H__ + +#include + +namespace Kernel::GZip +{ + class IGZipObject; + class IGZipProxy; +} // namespace Kernel::GZip + +#endif // !__KERNELKIT_GZIP_H__ diff --git a/dev/ZKAKit/CompressKit/RLE.h b/dev/ZKAKit/CompressKit/RLE.h new file mode 100644 index 00000000..9101b0b9 --- /dev/null +++ b/dev/ZKAKit/CompressKit/RLE.h @@ -0,0 +1,18 @@ +/* ------------------------------------------- + + Copyright ZKA Web Services Co. + +------------------------------------------- */ + +#ifndef __KERNELKIT_RLE_H__ +#define __KERNELKIT_RLE_H__ + +#include + +namespace Kernel +{ + class IRleObject; + class IRleProxy; +} // namespace Kernel + +#endif // !ifndef __KERNELKIT_RLE_H__ -- cgit v1.2.3