Bitcoin ABC  0.28.12
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 
10 class CAppNapInhibitor final {
11 public:
12  explicit CAppNapInhibitor();
14 
15  void disableAppNap();
16  void enableAppNap();
17 
18 private:
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:19