14 lines
251 B
C++
14 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
|