mirror of
https://github.com/overte-org/overte.git
synced 2025-06-23 11:20:34 +02:00
24 lines
466 B
Objective-C
24 lines
466 B
Objective-C
//
|
|
// AppNapDisabler.h
|
|
// interface/src
|
|
//
|
|
// Copyright 2019 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_AppNapDisabler_h
|
|
#define hifi_AppNapDisabler_h
|
|
|
|
#import <objc/objc-runtime.h>
|
|
|
|
class AppNapDisabler {
|
|
public:
|
|
AppNapDisabler();
|
|
~AppNapDisabler();
|
|
private:
|
|
id _activity;
|
|
};
|
|
|
|
#endif // hifi_AppNapDisabler_h
|