diff options
author | Roland Reichwein <mail@reichwein.it> | 2025-01-20 21:56:53 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2025-01-20 21:56:53 +0100 |
commit | 2c5684482c14764cec4fb32b2ec07dd3f77fd4bf (patch) | |
tree | 9ff9c5c04a20c30568f4ce1c466fe55818a0b45b /MainLoop.h | |
parent | 5fd637644c7529bfdc5291215f3f8ee1edd304c4 (diff) |
Diffstat (limited to 'MainLoop.h')
-rw-r--r-- | MainLoop.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -10,16 +10,23 @@ #include "PIDFile.h" #include <boost/signals2.hpp> +#include <boost/process.hpp> class MainLoop { public: MainLoop(int argc, char** argv); + ~MainLoop(); int run(); private: + void start_fcgi(); + void stop_fcgi(); + void reconfigure_mode(); + boost::process::child m_child_fcgi; + boost::signals2::connection m_click_connection; StatusLED m_status; |