// // CNSHockeyBaseManager+Private.h // HockeySDK // // Created by Andreas Linde on 04.06.12. // Copyright (c) 2012 __MyCompanyName__. All rights reserved. // #import #import @class BITHockeyBaseManager; @class BITHockeyBaseViewController; @interface BITHockeyBaseManager() - (id)initWithAppIdentifier:(NSString *)appIdentifier isAppStoreEnvironemt:(BOOL)isAppStoreEnvironment; - (void)startManager; - (void)reportError:(NSError *)error; - (NSString *)encodedAppIdentifier; - (BOOL)isAppStoreEnvironment; - (NSString *)getDevicePlatform; - (NSString *)executableUUID; - (UIWindow *)findVisibleWindow; - (void)showView:(UIViewController *)viewController; - (NSData *)appendPostValue:(NSString *)value forKey:(NSString *)key; - (NSDate *)parseRFC3339Date:(NSString *)dateString; @end