mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
15 lines
201 B
C++
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
|