YggdrasilWM  0.1.1
A tiny window manager coded in C++
Quit.hpp
Go to the documentation of this file.
1 
28 #ifndef YGGDRASILWM_QUIT_HPP
29 #define YGGDRASILWM_QUIT_HPP
30 #include "Commands/CommandBase.hpp"
35 class Quit : public CommandBase {
36 public:
37  Quit();
38  ~Quit() override = default;
39  void execute(const std::string &args) override;
40 };
41 #endif //YGGDRASILWM_QUIT_HPP
CommandBase class header.
Definition: CommandBase.hpp:35
Quit implement the mecanism to quit the window manager.
Definition: Quit.hpp:35
void execute(const std::string &args) override
Each child class must implement this interface.
Definition: Quit.cpp:30
~Quit() override=default