2018-11-07 12:24:35 -08:00
|
|
|
// Copyright 2013 The Flutter Authors. All rights reserved.
|
2018-08-21 08:52:24 -07:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
2019-04-12 14:23:13 -07:00
|
|
|
#ifndef FLUTTER_SHELL_COMMON_VERSION_H_
|
|
|
|
|
#define FLUTTER_SHELL_COMMON_VERSION_H_
|
2018-08-21 08:52:24 -07:00
|
|
|
|
2019-04-09 12:44:42 -07:00
|
|
|
namespace flutter {
|
2018-08-21 08:52:24 -07:00
|
|
|
|
|
|
|
|
const char* GetFlutterEngineVersion();
|
|
|
|
|
|
|
|
|
|
const char* GetSkiaVersion();
|
|
|
|
|
|
|
|
|
|
const char* GetDartVersion();
|
|
|
|
|
|
2019-04-09 12:44:42 -07:00
|
|
|
} // namespace flutter
|
2018-08-21 08:52:24 -07:00
|
|
|
|
2019-04-12 14:23:13 -07:00
|
|
|
#endif // FLUTTER_SHELL_COMMON_VERSION_H_
|