mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
10 lines
199 B
C++
10 lines
199 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(std::string module_name);
|