39d3f61497
- use "#pragma once" instead of the regular include guard - fix errors and warnings reported by cppcheck
11 lines
206 B
C++
11 lines
206 B
C++
#pragma once
|
|
|
|
#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);
|