photo-ios/Frameworks/Google Analytics SDK/Examples/BasicExample/Classes/BasicExampleAppDelegate.h
2012-10-25 15:55:28 +02:00

21 lines
593 B
Objective-C

//
// BasicExampleAppDelegate.h
// Google Analytics iOS SDK.
//
// Copyright 2009 Google Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GANTracker.h"
@interface BasicExampleAppDelegate : NSObject <UIApplicationDelegate,
UITabBarControllerDelegate,
GANTrackerDelegate> {
UIWindow *window_;
UITabBarController *tabBarController_;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;
@end