blob: 262717de2ed22b02c451ae61ec7f37d6e0b9812e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// AppDelegate.h
// sampleterm
//
// Created by Michael Testa on 11/1/12.
// Copyright (c) Blueradios, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <CoreBluetooth/CoreBluetooth.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) CBCentralManager *cbCentral;
@property (strong, nonatomic) CBPeripheral *activePeripheral;
//Returns a pointer to the shared AppDelegate
+(AppDelegate*)app;
@end
|