From bf2541b6cb1cb656ce2a16749afb2ddb0aa1bf72 Mon Sep 17 00:00:00 2001 From: Mamadou Babaei Date: Fri, 12 Jul 2024 20:34:40 +0200 Subject: [PATCH] add the editor utils class --- .../Private/SGUtils/SGEditorUtils.cpp | 36 ++++++++++++++++ .../Public/SGUtils/SGEditorUtils.h | 43 +++++++++++++++++++ 2 files changed, 79 insertions(+) create mode 100644 Source/SenseGloveUtils/Private/SGUtils/SGEditorUtils.cpp create mode 100644 Source/SenseGloveUtils/Public/SGUtils/SGEditorUtils.h diff --git a/Source/SenseGloveUtils/Private/SGUtils/SGEditorUtils.cpp b/Source/SenseGloveUtils/Private/SGUtils/SGEditorUtils.cpp new file mode 100644 index 00000000..0652a893 --- /dev/null +++ b/Source/SenseGloveUtils/Private/SGUtils/SGEditorUtils.cpp @@ -0,0 +1,36 @@ +/** + * @file + * + * @author Mamadou Babaei + * + * @section LICENSE + * + * (The MIT License) + * + * Copyright (c) 2020 - 2024 SenseGlove + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * + * @section DESCRIPTION + * + * + */ + + +#include "SGUtils/SGEditorUtils.h" \ No newline at end of file diff --git a/Source/SenseGloveUtils/Public/SGUtils/SGEditorUtils.h b/Source/SenseGloveUtils/Public/SGUtils/SGEditorUtils.h new file mode 100644 index 00000000..9ddd3ed0 --- /dev/null +++ b/Source/SenseGloveUtils/Public/SGUtils/SGEditorUtils.h @@ -0,0 +1,43 @@ +/** + * @file + * + * @author Mamadou Babaei + * + * @section LICENSE + * + * (The MIT License) + * + * Copyright (c) 2020 - 2024 SenseGlove + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED To THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, ToRT OR OTHERWISE, ARISING From, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + * + * @section DESCRIPTION + * + * + */ + + +#pragma once + +class SENSEGLOVEUTILS_API FSGEditorUtils final +{ +public: + FSGEditorUtils() = delete; + virtual ~FSGEditorUtils() = delete; +}; \ No newline at end of file