From 80b76666074aa94f165e3db7b3dda2145ca6efc0 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 21 Mar 2024 22:39:57 +0100 Subject: unstable, kernel+api: important breaking changes. Signed-off-by: Amlal El Mahrouss --- Public/Kits/System.Graphics/Dim2d.hxx | 38 ----------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 Public/Kits/System.Graphics/Dim2d.hxx (limited to 'Public/Kits/System.Graphics/Dim2d.hxx') diff --git a/Public/Kits/System.Graphics/Dim2d.hxx b/Public/Kits/System.Graphics/Dim2d.hxx deleted file mode 100644 index 77d42c90..00000000 --- a/Public/Kits/System.Graphics/Dim2d.hxx +++ /dev/null @@ -1,38 +0,0 @@ -/* ------------------------------------------- - - 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 - -namespace System::Graphics { -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 System::Graphics - -#endif /* ifndef __DIM2D__ */ -- cgit v1.2.3