mirror of
				https://github.com/SoPat712/YTLitePlus.git
				synced 2025-10-30 20:34:03 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			857 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			857 B
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
| //
 | |
| //  FLEXGlobalsViewController.h
 | |
| //  Flipboard
 | |
| //
 | |
| //  Created by Ryan Olson on 2014-05-03.
 | |
| //  Copyright (c) 2020 FLEX Team. All rights reserved.
 | |
| //
 | |
| 
 | |
| #import "FLEXFilteringTableViewController.h"
 | |
| @protocol FLEXGlobalsTableViewControllerDelegate;
 | |
| 
 | |
| typedef NS_ENUM(NSUInteger, FLEXGlobalsSectionKind) {
 | |
|     FLEXGlobalsSectionCustom,
 | |
|     /// NSProcessInfo, Network history, system log,
 | |
|     /// heap, address explorer, libraries, app classes
 | |
|     FLEXGlobalsSectionProcessAndEvents,
 | |
|     /// Browse container, browse bundle, NSBundle.main,
 | |
|     /// NSUserDefaults.standard, UIApplication,
 | |
|     /// app delegate, key window, root VC, cookies
 | |
|     FLEXGlobalsSectionAppShortcuts,
 | |
|     /// UIPasteBoard.general, UIScreen, UIDevice
 | |
|     FLEXGlobalsSectionMisc,
 | |
|     FLEXGlobalsSectionCount
 | |
| };
 | |
| 
 | |
| @interface FLEXGlobalsViewController : FLEXFilteringTableViewController
 | |
| 
 | |
| @end
 | 
