Select Git revision
BuildInfo.cpp
-
Stéphane Del Pino authored
Now pugs version and build information are accessed through the '-v' or '--version' command line options
Stéphane Del Pino authoredNow pugs version and build information are accessed through the '-v' or '--version' command line options
SignalManager.hpp 300 B
#ifndef SIGNAL_MANAGER_HPP
#define SIGNAL_MANAGER_HPP
#include <iostream>
struct SignalManager
{
private:
static std::string signalName(int signal);
static void pauseForDebug();
static void handler(int signal);
public:
static void init(const bool& enable);
};
#endif // SIGNAL_MANAGER_HPP