mirror of
https://github.com/usatiuk/cardboy.git
synced 2025-10-29 07:37:48 +01:00
20 lines
267 B
C++
20 lines
267 B
C++
//
|
|
// Created by Stepan Usatiuk on 02.03.2025.
|
|
//
|
|
|
|
#ifndef CB_SHUTDOWNER_HPP
|
|
#define CB_SHUTDOWNER_HPP
|
|
|
|
|
|
class Shutdowner {
|
|
public:
|
|
static Shutdowner& get();
|
|
void install_isr();
|
|
void shutdown();
|
|
private:
|
|
Shutdowner();
|
|
};
|
|
|
|
|
|
#endif // CB_SHUTDOWNER_HPP
|