From d48cbe75ef29a9c67c9d176bf58e56ea6448fb9e Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 21 Oct 2024 20:23:36 +0200 Subject: IMP: Major refactor of header and source files extensions. Signed-off-by: Amlal El Mahrouss --- dev/zka/CompilerKit/CompilerKit.h | 13 +++++++++++++ dev/zka/CompilerKit/CompilerKit.hxx | 13 ------------- dev/zka/CompilerKit/Detail.h | 27 +++++++++++++++++++++++++++ dev/zka/CompilerKit/Detail.hxx | 27 --------------------------- dev/zka/CompilerKit/Version.h | 7 +++++++ dev/zka/CompilerKit/Version.hxx | 7 ------- 6 files changed, 47 insertions(+), 47 deletions(-) create mode 100644 dev/zka/CompilerKit/CompilerKit.h delete mode 100644 dev/zka/CompilerKit/CompilerKit.hxx create mode 100644 dev/zka/CompilerKit/Detail.h delete mode 100644 dev/zka/CompilerKit/Detail.hxx create mode 100644 dev/zka/CompilerKit/Version.h delete mode 100644 dev/zka/CompilerKit/Version.hxx (limited to 'dev/zka/CompilerKit') diff --git a/dev/zka/CompilerKit/CompilerKit.h b/dev/zka/CompilerKit/CompilerKit.h new file mode 100644 index 00000000..6aa7d04f --- /dev/null +++ b/dev/zka/CompilerKit/CompilerKit.h @@ -0,0 +1,13 @@ +/* ------------------------------------------- + + Copyright ZKA Web Services Co. + +------------------------------------------- */ + +#ifndef _INC_CL_HPP +#define _INC_CL_HPP + +#include +#include + +#endif /* ifndef _INC_CL_HPP */ diff --git a/dev/zka/CompilerKit/CompilerKit.hxx b/dev/zka/CompilerKit/CompilerKit.hxx deleted file mode 100644 index 01661827..00000000 --- a/dev/zka/CompilerKit/CompilerKit.hxx +++ /dev/null @@ -1,13 +0,0 @@ -/* ------------------------------------------- - - Copyright ZKA Web Services Co. - -------------------------------------------- */ - -#ifndef _INC_CL_HPP -#define _INC_CL_HPP - -#include -#include - -#endif /* ifndef _INC_CL_HPP */ diff --git a/dev/zka/CompilerKit/Detail.h b/dev/zka/CompilerKit/Detail.h new file mode 100644 index 00000000..203175ce --- /dev/null +++ b/dev/zka/CompilerKit/Detail.h @@ -0,0 +1,27 @@ +/* ------------------------------------------- + + Copyright ZKA Web Services Co. + +------------------------------------------- */ + +#pragma once + +#ifdef __NEWOSKRNL__ +#include +#endif // ifdef __NEWOSKRNL__ + +#define ZKA_COPY_DELETE(KLASS) \ + KLASS& operator=(const KLASS&) = delete; \ + KLASS(const KLASS&) = delete; + +#define ZKA_COPY_DEFAULT(KLASS) \ + KLASS& operator=(const KLASS&) = default; \ + KLASS(const KLASS&) = default; + +#define ZKA_MOVE_DELETE(KLASS) \ + KLASS& operator=(KLASS&&) = delete; \ + KLASS(KLASS&&) = delete; + +#define ZKA_MOVE_DEFAULT(KLASS) \ + KLASS& operator=(KLASS&&) = default; \ + KLASS(KLASS&&) = default; diff --git a/dev/zka/CompilerKit/Detail.hxx b/dev/zka/CompilerKit/Detail.hxx deleted file mode 100644 index 827cebe6..00000000 --- a/dev/zka/CompilerKit/Detail.hxx +++ /dev/null @@ -1,27 +0,0 @@ -/* ------------------------------------------- - - Copyright ZKA Web Services Co. - -------------------------------------------- */ - -#pragma once - -#ifdef __NEWOSKRNL__ -#include -#endif // ifdef __NEWOSKRNL__ - -#define ZKA_COPY_DELETE(KLASS) \ - KLASS& operator=(const KLASS&) = delete; \ - KLASS(const KLASS&) = delete; - -#define ZKA_COPY_DEFAULT(KLASS) \ - KLASS& operator=(const KLASS&) = default; \ - KLASS(const KLASS&) = default; - -#define ZKA_MOVE_DELETE(KLASS) \ - KLASS& operator=(KLASS&&) = delete; \ - KLASS(KLASS&&) = delete; - -#define ZKA_MOVE_DEFAULT(KLASS) \ - KLASS& operator=(KLASS&&) = default; \ - KLASS(KLASS&&) = default; diff --git a/dev/zka/CompilerKit/Version.h b/dev/zka/CompilerKit/Version.h new file mode 100644 index 00000000..460fe2ee --- /dev/null +++ b/dev/zka/CompilerKit/Version.h @@ -0,0 +1,7 @@ +// (C) ZKA Web Services Co + +#pragma once + +/// .. +#define BOOTLOADER_VERSION "930.2024.1" +#define KERNEL_VERSION "930.2024.1" diff --git a/dev/zka/CompilerKit/Version.hxx b/dev/zka/CompilerKit/Version.hxx deleted file mode 100644 index 460fe2ee..00000000 --- a/dev/zka/CompilerKit/Version.hxx +++ /dev/null @@ -1,7 +0,0 @@ -// (C) ZKA Web Services Co - -#pragma once - -/// .. -#define BOOTLOADER_VERSION "930.2024.1" -#define KERNEL_VERSION "930.2024.1" -- cgit v1.2.3