Bitcoin ABC 0.30.5
P2P Digital Currency
macos_appnap.h
Go to the documentation of this file.
1// Copyright (c) 2011-2018 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_QT_MACOS_APPNAP_H
6#define BITCOIN_QT_MACOS_APPNAP_H
7
8#include <memory>
9
10class CAppNapInhibitor final {
11public:
12 explicit CAppNapInhibitor();
14
15 void disableAppNap();
16 void enableAppNap();
17
18private:
19 class CAppNapImpl;
20 std::unique_ptr<CAppNapImpl> impl;
21};
22
23#endif // BITCOIN_QT_MACOS_APPNAP_H
std::unique_ptr< CAppNapImpl > impl
Definition: macos_appnap.h:20