Core: Add SignalHandlerAppComponent
This commit is contained in:
committed by
Jérôme Leclercq
parent
8eefb2f101
commit
40bb69bc60
35
include/Nazara/Core/SignalHandlerAppComponent.hpp
Normal file
35
include/Nazara/Core/SignalHandlerAppComponent.hpp
Normal file
@@ -0,0 +1,35 @@
|
||||
// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com)
|
||||
// This file is part of the "Nazara Engine - Core module"
|
||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_CORE_SIGNALHANDLERAPPCOMPONENT_HPP
|
||||
#define NAZARA_CORE_SIGNALHANDLERAPPCOMPONENT_HPP
|
||||
|
||||
#include <NazaraUtils/Prerequisites.hpp>
|
||||
#include <Nazara/Core/ApplicationComponent.hpp>
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
class NAZARA_CORE_API SignalHandlerAppComponent : public ApplicationComponent
|
||||
{
|
||||
public:
|
||||
inline SignalHandlerAppComponent(ApplicationBase& app);
|
||||
SignalHandlerAppComponent(const SignalHandlerAppComponent&) = delete;
|
||||
SignalHandlerAppComponent(SignalHandlerAppComponent&&) = delete;
|
||||
~SignalHandlerAppComponent() = default;
|
||||
|
||||
SignalHandlerAppComponent& operator=(const SignalHandlerAppComponent&) = delete;
|
||||
SignalHandlerAppComponent& operator=(SignalHandlerAppComponent&&) = delete;
|
||||
|
||||
private:
|
||||
void InstallSignalHandler();
|
||||
|
||||
static void HandleInterruptSignal(const char* signalName);
|
||||
};
|
||||
}
|
||||
|
||||
#include <Nazara/Core/SignalHandlerAppComponent.inl>
|
||||
|
||||
#endif // NAZARA_CORE_SIGNALHANDLERAPPCOMPONENT_HPP
|
||||
Reference in New Issue
Block a user