blob: 6a265e686423cf45d25b93f7393facddb8399016 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// StatsTabBarController.h
// Volta
//
// Created by Ronny Fenrich on 2013-06-14.
// Copyright (c) 2013 Decoder. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "MGOrderedDictionary.h"
@interface StatsTabBarController : UITabBarController
@property (strong, nonatomic) MGOrderedDictionary *data; // VoltaReading objects
@property (strong, nonatomic) NSDate *startDate;
@property (strong, nonatomic) NSDate *endDate;
@end
|