Signal-iOS/Signal/src/ViewControllers/DebugUI/DebugUIPage.h
2019-08-09 21:16:25 -03:00

30 lines
560 B
Objective-C

//
// Copyright (c) 2019 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
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
#endif