mirror of
https://bitbucket.org/vendoo/vendoo_v1.0.git
synced 2025-12-25 19:57:41 +00:00
28 lines
929 B
Objective-C
28 lines
929 B
Objective-C
/** @file FirebaseAuth.h
|
|
@brief Firebase Auth SDK
|
|
@copyright Copyright 2015 Google Inc.
|
|
@remarks Use of this SDK is subject to the Google APIs Terms of Service:
|
|
https://developers.google.com/terms/
|
|
*/
|
|
|
|
#import <FirebaseAuth/FIREmailPasswordAuthProvider.h>
|
|
#import <FirebaseAuth/FIRFacebookAuthProvider.h>
|
|
#import <FirebaseAuth/FIRGitHubAuthProvider.h>
|
|
#import <FirebaseAuth/FIRGoogleAuthProvider.h>
|
|
#import <FirebaseAuth/FIRTwitterAuthProvider.h>
|
|
#import <FirebaseAuth/FIRAuth.h>
|
|
#import <FirebaseAuth/FIRAuthCredential.h>
|
|
#import <FirebaseAuth/FIRAuthErrors.h>
|
|
#import <FirebaseAuth/FIRUser.h>
|
|
#import <FirebaseAuth/FIRUserInfo.h>
|
|
|
|
/** @var FirebaseAuthVersionNumber
|
|
@brief Version number for FirebaseAuth.
|
|
*/
|
|
extern const double FirebaseAuthVersionNumber;
|
|
|
|
/** @var FirebaseAuthVersionString
|
|
@brief Version string for FirebaseAuth.
|
|
*/
|
|
extern const unsigned char *const FirebaseAuthVersionString;
|