Select Git revision
TinyMatrix.hpp
-
Stéphane Del Pino authored
g++-7 does not like the mix of constexpr and these implicit constructors
Stéphane Del Pino authoredg++-7 does not like the mix of constexpr and these implicit constructors
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