Blame view

BT Vendor/InitialViewController.h 405 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
//
//  InitialViewController.h
//  DUREX Vendor Control
//
//  Created by Imanol Barba on 5/22/14.
//  Copyright (c) 2014 Emmoco. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface InitialViewController : UIViewController

@property (nonatomic,strong) IBOutlet UIButton *connectButton;
Imanol-Mikel Barba Sabariego authored
14
@property (nonatomic,strong) IBOutlet UILabel *label;
Imanol-Mikel Barba Sabariego authored
15
16
17

- (IBAction) connectPressed:(UIButton*)button;
Imanol-Mikel Barba Sabariego authored
18
Imanol-Mikel Barba Sabariego authored
19
@end