-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeviceController.h
More file actions
33 lines (26 loc) · 952 Bytes
/
DeviceController.h
File metadata and controls
33 lines (26 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// DeviceController.h
// PulseBeat
//
// Created by Omar Metwally on 10/21/13.
// Copyright (c) 2013 Logisome. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GAITrackedViewController.h"
@class OAuth1Controller, WithingsOAuth1Controller;
@interface DeviceController : GAITrackedViewController
{
__weak IBOutlet UIButton *fitbitButton;
__weak IBOutlet UIButton *withingsButton;
UIColor *normalColor;
}
@property (nonatomic, copy) void (^selectedActionBlock)(void);
@property (nonatomic, strong) OAuth1Controller *oauth1Controller;
@property (nonatomic, strong) WithingsOAuth1Controller *withingsOAuth1Controller;
@property (nonatomic, strong) NSString *oauthToken;
@property (nonatomic, strong) NSString *oauthTokenSecret;
- (IBAction)fitbitButtonPressed:(id)sender;
- (IBAction)withingsButtonPressed:(id)sender;
- (OAuth1Controller *)oauth1Controller;
- (WithingsOAuth1Controller *)withingsOAuth1Controller;
@end