Today's Menu  Portugal
journal and plan nutrition
V7GoogleLoginControlbar.h
Go to the documentation of this file.
1 //
2 // V7GoogDriveMenuItemControlbar.h
3 // TodaysMenu
4 //
5 // Created by Don Zeek on 12/29/18.
6 // Copyright © 2018 net.dzeek.y2015.ios.`portfolio. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
12 #import "Z6ContainedView.h"
13 
14 @import GoogleSignIn;
15 
16 NS_ASSUME_NONNULL_BEGIN
17 
18 @protocol V7GoogleLoginProtocol <NSObject>
19 
20 - (void) saveToDrive;
21 - (void) regenerateLoginView;
22 - (GIDProfileData *) getLoggedInProfile;
23 
24 @end
25 
26 @interface V7GoogleLoginControlbar : UIView <Z6ContainedView, GIDSignInUIDelegate, Z5GoogleLoginListener>
27 
28 @property (nonatomic, strong) GIDSignInButton *signInButton;
29 @property (strong, nonatomic) UIButton *forwardButton;
30 
31 - (instancetype) initWithFrame:(CGRect)frame andDelegate:(id<V7GoogleLoginProtocol>)delegate;
32 - (void) appear;
33 
34 @end
35 
36 NS_ASSUME_NONNULL_END
import GoogleSignIn