Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GuideViewController.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18e7b82f8329142c1df92d0156c68954ad8618f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  GuideViewController.h
//  Maps
//
//  Created by Yury Melnichek on 15.03.11.
//  Copyright 2011 MapsWithMe. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "../../Sloynik/Shared/SearchVC.h"

@interface GuideViewController : SearchVC
{
  UIActivityIndicatorView * activityIndicator;
  UILabel * loadingLabel;
}

@property (nonatomic, retain) UIActivityIndicatorView * activityIndicator;
@property (nonatomic, retain) UILabel * loadingLabel;

- (IBAction)OnMapClicked:(id)sender;
- (void)OnSloynikEngineInitialized;

@end