summaryrefslogtreecommitdiff
path: root/StoneIsland/platforms/ios/Pods/GGLInstanceID/Headers/Public/GGLInstanceIDConfig.h
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-09-26 01:35:13 +0200
committerJules Laplace <julescarbon@gmail.com>2017-09-26 01:35:13 +0200
commit597fa051833ca3df6eb185c0143ff82e02dacba1 (patch)
treecb25347477c57f82e955b054b70f4bb5359fb0d2 /StoneIsland/platforms/ios/Pods/GGLInstanceID/Headers/Public/GGLInstanceIDConfig.h
parent6a9186aea6b85beef28e3eb765fbf2322a1c7890 (diff)
push plugin ugh
Diffstat (limited to 'StoneIsland/platforms/ios/Pods/GGLInstanceID/Headers/Public/GGLInstanceIDConfig.h')
-rw-r--r--StoneIsland/platforms/ios/Pods/GGLInstanceID/Headers/Public/GGLInstanceIDConfig.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/StoneIsland/platforms/ios/Pods/GGLInstanceID/Headers/Public/GGLInstanceIDConfig.h b/StoneIsland/platforms/ios/Pods/GGLInstanceID/Headers/Public/GGLInstanceIDConfig.h
deleted file mode 100644
index da885569..00000000
--- a/StoneIsland/platforms/ios/Pods/GGLInstanceID/Headers/Public/GGLInstanceIDConfig.h
+++ /dev/null
@@ -1,32 +0,0 @@
-@protocol GGLInstanceIDDelegate;
-
-typedef NS_ENUM(int8_t, GGLInstanceIDLogLevel) {
- kGGLInstanceIDLogLevelDebug,
- kGGLInstanceIDLogLevelInfo,
- kGGLInstanceIDLogLevelError,
- kGGLInstanceIDLogLevelAssert,
-};
-
-/**
- * The config used to configure different options in GGLInstanceID library.
- */
-@interface GGLInstanceIDConfig : NSObject <NSCopying, NSMutableCopying>
-
-/**
- * Set the GGLInstanceIDDelegate to receive callbacks.
- *
- * @see GGLInstanceIDDelegate
- */
-@property(nonatomic, readwrite, weak) id<GGLInstanceIDDelegate> delegate;
-
-// the log level for the GGLInstanceID library.
-@property(nonatomic, readwrite, assign) GGLInstanceIDLogLevel logLevel;
-
-/**
- * Initialize a default config with logLevel set to `kGGLInstanceIDLogLevelError`.
- *
- * @return A default config for GGLInstanceID.
- */
-+ (instancetype)defaultConfig;
-
-@end