mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
558 B
Objective-C
28 lines
558 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "DebugUIPage.h"
|
|
|
|
// This preprocessor symbol controls whether or not the Debug UI is active.
|
|
//
|
|
// To show the DebugUI in production builds, comment out the #ifdef and #endif
|
|
#ifdef DEBUG
|
|
#define USE_DEBUG_UI
|
|
#endif
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class OWSTableSection;
|
|
@class TSThread;
|
|
|
|
@interface DebugUIPage : NSObject
|
|
|
|
- (NSString *)name;
|
|
|
|
- (nullable OWSTableSection *)sectionForThread:(nullable TSThread *)thread NS_SWIFT_NAME(section(thread:));
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|