Today's Menu  Portugal
journal and plan nutrition
Z5RemoteDataFetchProtocol.h
Go to the documentation of this file.
1 //
2 // Z5RemoteDataFetchProtocol.h
3 // Z7Ma2AminoLight
4 //
5 // Created by Don Zeek on 1/20/15.
6 // Copyright (c) 2015 net.dzeek.y2014.ios.aminoview. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 // #import "GTLDrive.h"
11 
12 @protocol Z5RemoteDataFetchProtocol <NSObject>
13 
14 // @optional
15 - (void) showHomeAsk;
16 - (void) showHomeError:(NSError *)error;
17 - (BOOL) tellHomeError;
18 // - (void) showHomeResult: (GTLDriveFile *)filen;
19 // - (GTLDriveFile *) tellHomeResult;
20 - (void) showFetchAsk;
21 - (void) showFetchError;
22 - (void) showFetchResult: (NSArray *)filen;
23 - (void) showPublishAsk;
24 - (void) showPublishError;
25 - (void) showPublishResult;
26 - (void) showDataFetch: (NSData *) data;
27 - (void) showDataFetch: (NSData *) data fromFile: (NSString *) title withGoogleId: (NSString *) fileId;
28 - (void) showGoogleFileTitle: (NSString *) title andId: (NSString *) fileId;
29 // - (void) showInsertResult: (GTLDriveFile *) newf;
30 - (void) updateUI;
31 
32 @end