From 753d9d8ad2795f757e6716b5f105dd95d3c6f5a8 Mon Sep 17 00:00:00 2001 From: YZBruh Date: Sun, 24 Aug 2025 16:19:15 +0300 Subject: [PATCH] Cleanup --- src/CMakeLists.txt | 3 +-- src/functions/ShellFunction.cpp | 16 ---------------- src/functions/functions.hpp | 11 ----------- 3 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 src/functions/ShellFunction.cpp diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index ac53f0b..e747b0b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -30,8 +30,7 @@ set(PMT_SOURCES ) # Add pmt -add_executable(pmt ${PMT_SOURCES} - functions/ShellFunction.cpp) +add_executable(pmt ${PMT_SOURCES}) add_executable(pmt_static ${PMT_SOURCES}) # Set linker options diff --git a/src/functions/ShellFunction.cpp b/src/functions/ShellFunction.cpp deleted file mode 100644 index f6ffbdc..0000000 --- a/src/functions/ShellFunction.cpp +++ /dev/null @@ -1,16 +0,0 @@ -/* -Copyright 2025 Yağız Zengin - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. -*/ - diff --git a/src/functions/functions.hpp b/src/functions/functions.hpp index cdd745b..990be99 100644 --- a/src/functions/functions.hpp +++ b/src/functions/functions.hpp @@ -175,17 +175,6 @@ public: [[nodiscard]] const char *name() const override; }; -class shellFunction final : public FunctionBase { -public: - CLI::App *cmd = nullptr; - - bool init(CLI::App &_app) override; - bool run() override; - - [[nodiscard]] bool isUsed() const override; - [[nodiscard]] const char *name() const override; -}; - } // namespace PartitionManager #endif // #ifndef FUNCTIONS_HPP