NCUserDefaults.h 520 B

12345678910111213141516171819202122
  1. //
  2. /**
  3. * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: GPL-3.0-or-later
  5. */
  6. #import <Foundation/Foundation.h>
  7. NS_ASSUME_NONNULL_BEGIN
  8. @interface NCUserDefaults : NSObject
  9. + (void)setPreferredCameraFlashMode:(NSInteger)flashMode;
  10. + (NSInteger)preferredCameraFlashMode;
  11. + (void)setBackgroundBlurEnabled:(BOOL)enabled;
  12. + (BOOL)backgroundBlurEnabled;
  13. + (void)setIncludeCallsInRecentsEnabled:(BOOL)enabled;
  14. + (BOOL)includeCallsInRecents;
  15. @end
  16. NS_ASSUME_NONNULL_END