mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
94daccc78e
// FREEBIE
27 lines
558 B
Objective-C
27 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
|