Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
dart_wrapper.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 FLUTTER_LIB_UI_DART_WRAPPER_H_
6#define FLUTTER_LIB_UI_DART_WRAPPER_H_
7
8#include "flutter/fml/memory/ref_counted.h"
10
11namespace flutter {
12
13template <typename T>
16 public:
17 virtual void RetainDartWrappableReference() const override {
19 }
20
21 virtual void ReleaseDartWrappableReference() const override {
23 }
24};
25
26} // namespace flutter
27
28#endif // FLUTTER_LIB_UI_DART_WRAPPER_H_
virtual void ReleaseDartWrappableReference() const override
virtual void RetainDartWrappableReference() const override