diff options
Diffstat (limited to 'dev/ZKAKit/CompressKit')
| -rw-r--r-- | dev/ZKAKit/CompressKit/GZip.h | 18 | ||||
| -rw-r--r-- | dev/ZKAKit/CompressKit/RLE.h | 18 |
2 files changed, 36 insertions, 0 deletions
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 <NewKit/Defines.h> + +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 <NewKit/Defines.h> + +namespace Kernel +{ + class IRleObject; + class IRleProxy; +} // namespace Kernel + +#endif // !ifndef __KERNELKIT_RLE_H__ |
