22 lines
445 B
Objective-C
22 lines
445 B
Objective-C
//
|
|
// RouteRequestViewController.h
|
|
// FMC Planner 2
|
|
//
|
|
// Created by Kilian Hofmann on 16.04.16.
|
|
// Copyright © 2016 Kilian Hofmann. All rights reserved.
|
|
//
|
|
|
|
#import "SharedDeclerations.h"
|
|
#import "ViewController.h"
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ViewControllerRouteRequest : UIViewController
|
|
|
|
#pragma mark - Refrence to other views in app
|
|
|
|
@property (strong, nonatomic) ViewController *main;
|
|
|
|
- (IBAction)ok:(UIButton *)sender;
|
|
|
|
@end
|