Improve build system, etc...

This commit is contained in:
2025-08-24 16:16:30 +03:00
parent 62b1ff98d9
commit 249b44a81a
7 changed files with 56 additions and 42 deletions

View File

@@ -175,6 +175,17 @@ 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