1//
2//  AIRDummyView.m
3//  AirMapsExplorer
4//
5//  Created by Gil Birman on 10/4/16.
6//
7
8#ifdef HAVE_GOOGLE_MAPS
9
10#import <Foundation/Foundation.h>
11#import "AIRDummyView.h"
12
13@implementation AIRDummyView
14- (instancetype)initWithView:(UIView*)view
15{
16  if ((self = [super init])) {
17    self.view = view;
18  }
19  return self;
20}
21@end
22
23#endif
24