mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2024-11-25 02:24:16 +00:00
24 lines
398 B
C
24 lines
398 B
C
|
//
|
||
|
// ViewController.h
|
||
|
// SimpleConfig
|
||
|
//
|
||
|
// Created by Realsil on 14/11/6.
|
||
|
// Copyright (c) 2014年 Realtek. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "SimpleConfig.h"
|
||
|
#import "String.h"
|
||
|
#import "ConfigViewController.h"
|
||
|
|
||
|
@interface ViewController : UIViewController
|
||
|
{
|
||
|
@private
|
||
|
SC_CONTEXT m_context;
|
||
|
}
|
||
|
|
||
|
@property (strong, nonatomic) ConfigViewController *m_configVC;
|
||
|
|
||
|
@end
|
||
|
|