YggdrasilWM
0.1.1
A tiny window manager coded in C++
CommandBase.hpp
Go to the documentation of this file.
1
27
#ifndef YGGDRASILWM_COMMANDBASE_HPP
28
#define YGGDRASILWM_COMMANDBASE_HPP
29
#include <string>
30
35
class
CommandBase
{
36
public
:
37
CommandBase
() =
default
;
38
virtual
~CommandBase
() =
default
;
44
virtual
void
execute
(
const
std::string &args) = 0;
45
};
46
47
#endif
//YGGDRASILWM_COMMANDBASE_HPP
CommandBase
Definition:
CommandBase.hpp:35
CommandBase::execute
virtual void execute(const std::string &args)=0
Each child class must implement this interface.
CommandBase::~CommandBase
virtual ~CommandBase()=default
CommandBase::CommandBase
CommandBase()=default
inc
Commands
CommandBase.hpp
Generated by
1.9.1