1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-27 05:23:39 -04:00
polybar/include/modules/meta/input_handler.hpp

16 lines
201 B
C++
Raw Normal View History

#pragma once
#include "common.hpp"
POLYBAR_NS
namespace modules {
2016-12-23 14:43:52 -05:00
class input_handler {
public:
virtual ~input_handler() {}
2016-12-23 14:43:52 -05:00
virtual bool input(string&& cmd) = 0;
};
}
POLYBAR_NS_END