YggdrasilWM  0.1.1
A tiny window manager coded in C++
FocusGroup.hpp
Go to the documentation of this file.
1 
27 #ifndef YGGDRASILWM_FOCUSGROUP_HPP
28 #define YGGDRASILWM_FOCUSGROUP_HPP
29 #include "Commands/CommandBase.hpp"
34 class FocusGroup : public CommandBase {
35 public:
36  FocusGroup();
37  ~FocusGroup() override = default;
43  void execute(const std::string &args) override;
44 };
45 #endif //YGGDRASILWM_FOCUSGROUP_HPP
CommandBase class header.
Definition: CommandBase.hpp:35
FocusGroup implement the mecanism to switch between group.
Definition: FocusGroup.hpp:34
FocusGroup()
Definition: FocusGroup.cpp:33
void execute(const std::string &args) override
switch from the current active group to the group index passed as argument
Definition: FocusGroup.cpp:37
~FocusGroup() override=default