Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
dart_wrapper_info.h
Go to the documentation of this file.
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#ifndef LIB_TONIC_DART_WRAPPER_INFO_H_
6#define LIB_TONIC_DART_WRAPPER_INFO_H_
7
8#include <cstddef>
9
10namespace tonic {
11class DartWrappable;
12
14
16 const char* library_name;
17 const char* interface_name;
18
21
22 private:
23 DartWrapperInfo(const DartWrapperInfo&) = delete;
24 DartWrapperInfo& operator=(const DartWrapperInfo&) = delete;
25};
26
27} // namespace tonic
28
29#endif // LIB_TONIC_DART_WRAPPER_INFO_H_
void(* DartWrappableAccepter)(DartWrappable *)
DartWrapperInfo(const char *library_name, const char *interface_name)