summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLAccountManager_Private.h
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-03-05 18:00:11 -0800
committerMinh Nguyễn <mxn@1ec5.org>2016-03-10 17:08:58 -0800
commite36218a8668316e8c1b0bcc06d43dad31461615c (patch)
tree04d5e58ae0c4dea4b0a50e034a8a630564cb7a53 /platform/darwin/src/MGLAccountManager_Private.h
parent081ee9fbefbdb37f116a5bf2c0383586bce6608a (diff)
downloadqtlocation-mapboxgl-e36218a8668316e8c1b0bcc06d43dad31461615c.tar.gz
[osx] Added OS X support for offline downloads
Diffstat (limited to 'platform/darwin/src/MGLAccountManager_Private.h')
-rw-r--r--platform/darwin/src/MGLAccountManager_Private.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/platform/darwin/src/MGLAccountManager_Private.h b/platform/darwin/src/MGLAccountManager_Private.h
new file mode 100644
index 0000000000..655af08f20
--- /dev/null
+++ b/platform/darwin/src/MGLAccountManager_Private.h
@@ -0,0 +1,11 @@
+#import "MGLAccountManager.h"
+
+@interface MGLAccountManager (Private)
+
+/// Returns the shared instance of the `MGLAccountManager` class.
++ (instancetype)sharedManager;
+
+/// The current global access token.
+@property (atomic) NSString *accessToken;
+
+@end