From 8719b4570a2d10dd49a0d3a47e24f5c55bdda85e Mon Sep 17 00:00:00 2001 From: Amlal Date: Sun, 22 Sep 2024 17:46:11 +0200 Subject: :boom: A big refactor on the filesystem structure. Signed-off-by: Amlal --- dev/zka/CompilerKit/CompilerKit.hxx | 13 +++++++++++++ dev/zka/CompilerKit/Detail.hxx | 27 +++++++++++++++++++++++++++ dev/zka/CompilerKit/Version.hxx | 5 +++++ 3 files changed, 45 insertions(+) create mode 100644 dev/zka/CompilerKit/CompilerKit.hxx create mode 100644 dev/zka/CompilerKit/Detail.hxx create mode 100644 dev/zka/CompilerKit/Version.hxx (limited to 'dev/zka/CompilerKit') diff --git a/dev/zka/CompilerKit/CompilerKit.hxx b/dev/zka/CompilerKit/CompilerKit.hxx new file mode 100644 index 00000000..f2ec4db2 --- /dev/null +++ b/dev/zka/CompilerKit/CompilerKit.hxx @@ -0,0 +1,13 @@ +/* ------------------------------------------- + + Copyright ZKA Technologies. + +------------------------------------------- */ + +#ifndef _INC_CL_HPP +#define _INC_CL_HPP + +#include +#include + +#endif /* ifndef _INC_CL_HPP */ diff --git a/dev/zka/CompilerKit/Detail.hxx b/dev/zka/CompilerKit/Detail.hxx new file mode 100644 index 00000000..d0b8d153 --- /dev/null +++ b/dev/zka/CompilerKit/Detail.hxx @@ -0,0 +1,27 @@ +/* ------------------------------------------- + + Copyright ZKA Technologies. + +------------------------------------------- */ + +#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.hxx b/dev/zka/CompilerKit/Version.hxx new file mode 100644 index 00000000..83f7f534 --- /dev/null +++ b/dev/zka/CompilerKit/Version.hxx @@ -0,0 +1,5 @@ +#pragma once + +/// .. +#define BOOTLOADER_VERSION "843.2024.1" +#define KERNEL_VERSION "843.2024.1" -- cgit v1.2.3