mirror of
https://github.com/polybar/polybar.git
synced 2025-04-28 17:47:22 -04: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
|