2013-12-05 05:57:44 +00:00
|
|
|
//
|
|
|
|
// LAViewController.h
|
|
|
|
// photobackup
|
|
|
|
//
|
|
|
|
// Created by Nick O'Neill on 10/20/13.
|
|
|
|
// Copyright (c) 2013 The Camlistore Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2014-01-05 02:50:35 +00:00
|
|
|
#import "LACamliClient.h"
|
2013-12-05 05:57:44 +00:00
|
|
|
|
2014-01-05 02:50:35 +00:00
|
|
|
@class ProgressViewController;
|
2013-12-11 19:57:22 +00:00
|
|
|
|
2014-01-16 21:29:55 +00:00
|
|
|
@interface LAViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, LACamliStatusDelegate>
|
2013-12-05 05:57:44 +00:00
|
|
|
|
2014-01-16 21:29:55 +00:00
|
|
|
@property IBOutlet UITableView* table;
|
|
|
|
@property NSMutableArray* operations;
|
|
|
|
@property ProgressViewController* progress;
|
2013-12-11 19:57:22 +00:00
|
|
|
|
2013-12-13 18:57:43 +00:00
|
|
|
- (void)dismissSettings;
|
|
|
|
|
2013-12-05 05:57:44 +00:00
|
|
|
@end
|