mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
13 lines
251 B
C++
13 lines
251 B
C++
#ifndef _LEMONBUDDY_HPP_
|
|
#define _LEMONBUDDY_HPP_
|
|
|
|
#include "exception.hpp"
|
|
|
|
DefineBaseException(ApplicationError);
|
|
|
|
void register_pid(pid_t pid);
|
|
void unregister_pid(pid_t pid);
|
|
|
|
void register_command_handler(const std::string& module_name);
|
|
|
|
#endif
|