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
2016-12-23 20:43:52 +01:00

15 lines
201 B
C++

#pragma once
#include "common.hpp"
POLYBAR_NS
namespace modules {
class input_handler {
public:
virtual ~input_handler() {}
virtual bool input(string&& cmd) = 0;
};
}
POLYBAR_NS_END