//
//  TopUpAppDelegate.h
//  TopUp
//
//  Created by Frank McPherson on 5/20/10.
//  Copyright bitdoctors.com 2010. All rights reserved.
//

#import <UIKit/UIKit.h>

@class FuelServicesViewController;

@interface TopUpAppDelegate : NSObject <UIApplicationDelegate> {
    UIWindow *window;
	FuelServicesViewController *fuelServicesViewController;
}
- (NSString *)fuelServicesArrayPath;
@property (nonatomic, retain) IBOutlet UIWindow *window;

@end

