mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2024-11-24 18:14:15 +00:00
03e74a8e50
motify compile link error
26 lines
626 B
Objective-C
26 lines
626 B
Objective-C
//
|
|
// DiscoverViewController.h
|
|
// SimpleConfig
|
|
//
|
|
// Created by Realsil on 14/11/13.
|
|
// Copyright (c) 2014年 Realtek. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "Lib/Discover/Scanner.h"
|
|
#import "ClientListCell.h"
|
|
#import "ClientViewController.h"
|
|
|
|
@interface DiscoverViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
|
|
{
|
|
@private
|
|
Scanner *m_scanner;
|
|
BOOL m_isLoading;
|
|
NSTimer *m_updateTimer;
|
|
UIStoryboardSegue *m_segue;
|
|
}
|
|
|
|
@property (retain, nonatomic) IBOutlet UITableView *discover_table;
|
|
@property (strong, nonatomic) NSMutableArray *dev_array;
|
|
|
|
@end
|