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>
|
|
|
|
|
2013-12-24 05:36:10 +00:00
|
|
|
@class LACamliClient,ProgressViewController;
|
2013-12-11 19:57:22 +00:00
|
|
|
|
2013-12-05 05:57:44 +00:00
|
|
|
@interface LAViewController : UIViewController
|
|
|
|
|
2013-12-11 19:57:22 +00:00
|
|
|
@property LACamliClient *client;
|
2014-01-02 19:46:39 +00:00
|
|
|
@property IBOutlet UITextView *logtext;
|
2013-12-24 05:36:10 +00:00
|
|
|
@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
|