session-ios/Signal/src/ViewControllers/DebugUI/DebugUIPage.h
Matthew Chen 94daccc78e Fix fake contacts.
// FREEBIE
2017-09-01 15:24:27 -04:00

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