• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2013 The Flutter Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #import "flutter/shell/platform/darwin/common/framework/Headers/FlutterBinaryMessenger.h"
6 #import "flutter/shell/platform/darwin/common/framework/Headers/FlutterMacros.h"
7 
8 #if FLUTTER_RUNTIME_MODE == FLUTTER_RUNTIME_MODE_DEBUG
9 FLUTTER_EXPORT
10 #endif
11 @interface FlutterBinaryMessengerRelay : NSObject <FlutterBinaryMessenger>
12 @property(nonatomic, assign) NSObject<FlutterBinaryMessenger>* parent;
13 - (instancetype)initWithParent:(NSObject<FlutterBinaryMessenger>*)parent;
14 @end
15