blob: f3f103d93d1b7985ca8a2356909c19a88b5b391d [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GARNET_BIN_UI_SCENIC_APP_H_
#define GARNET_BIN_UI_SCENIC_APP_H_
#include <memory>
#include <lib/fit/function.h>
#include "garnet/lib/ui/scenic/scenic.h"
namespace scenic_impl {
class App {
public:
explicit App(component::StartupContext* app_context,
fit::closure quit_callback);
private:
std::unique_ptr<Scenic> scenic_;
fidl::BindingSet<Scenic> bindings_;
};
} // namespace scenic_impl
#endif // GARNET_BIN_UI_SCENIC_APP_H_