summaryrefslogtreecommitdiffhomepage
path: root/Public/Kits/System.Graphics/Dim2d.hxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-10 15:41:08 +0100
committerAmlal El Mahrouss <amlal@el-mahrouss-logic.com>2024-03-10 15:41:08 +0100
commit5468ca71a59c9e24c1d392554e8f97f0c1705394 (patch)
tree1e8af47da852d4ad02a2ea48a967694c7bfc19c3 /Public/Kits/System.Graphics/Dim2d.hxx
parent94d7585ae766d777f41d07b1a98051d12a6a0256 (diff)
Kernel: Reworked StorageKit to add AHCI support.
Signed-off-by: Amlal El Mahrouss <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'Public/Kits/System.Graphics/Dim2d.hxx')
-rw-r--r--Public/Kits/System.Graphics/Dim2d.hxx38
1 files changed, 38 insertions, 0 deletions
diff --git a/Public/Kits/System.Graphics/Dim2d.hxx b/Public/Kits/System.Graphics/Dim2d.hxx
new file mode 100644
index 00000000..a4f5fa8d
--- /dev/null
+++ b/Public/Kits/System.Graphics/Dim2d.hxx
@@ -0,0 +1,38 @@
+/* -------------------------------------------
+
+ Copyright Mahrouss Logic
+
+ File: Dim2d.hpp
+ Purpose:
+
+ Revision History:
+
+ 31/01/24: Added file (amlel)
+ 3/10/24: Remname extension to .hxx
+
+------------------------------------------- */
+
+#ifndef __DIM2D__
+#define __DIM2D__
+
+#include <System.Graphics/Core.hxx>
+
+namespace HCore {
+class G_API Dim2d final {
+ public:
+ explicit Dim2d() = delete;
+ explicit Dim2d(const HCore::UInt& x, const HCore::UInt& y) : m_X(x), m_Y(y) {}
+
+ Dim2d& operator=(const Dim2d&) = default;
+ Dim2d(const Dim2d&) = default;
+
+ HCore::UInt& X();
+ HCore::UInt& Y();
+
+ private:
+ HCore::UInt m_X{0};
+ HCore::UInt m_Y{0};
+};
+} // namespace HCore
+
+#endif /* ifndef __DIM2D__ */