session-ios/Signal/src/ViewControllers/OWSSoundSettingsViewController.h

24 lines
522 B
C
Raw Normal View History

2018-02-21 03:49:10 +01:00
//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
#import "OWSTableViewController.h"
2018-02-22 04:31:55 +01:00
NS_ASSUME_NONNULL_BEGIN
2018-02-23 20:36:21 +01:00
typedef NS_ENUM(NSUInteger, OWSSoundType) { OWSSoundType_Notification = 0 };
2018-02-22 04:31:55 +01:00
@class TSThread;
2018-02-22 04:31:55 +01:00
@interface OWSSoundSettingsViewController : OWSTableViewController
@property (nonatomic) OWSSoundType soundType;
2018-02-21 03:49:10 +01:00
// This property is optional. If it is not set, we are
// editing the global notification sound.
@property (nonatomic, nullable) TSThread *thread;
2018-02-21 03:49:10 +01:00
@end
2018-02-22 04:31:55 +01:00
NS_ASSUME_NONNULL_END