blob: dbb44d6c78768d6b02405979a53bf58e43d8cca6 [file] [log] [blame]
// Copyright 2024 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 EXAMPLES_DRIVERS_SKELETON_SKELETON_DRIVER_H_
#define EXAMPLES_DRIVERS_SKELETON_SKELETON_DRIVER_H_
#include <lib/driver/component/cpp/driver_base.h>
namespace skeleton {
class SkeletonDriver : public fdf::DriverBase {
public:
SkeletonDriver(fdf::DriverStartArgs start_args,
fdf::UnownedSynchronizedDispatcher driver_dispatcher);
// Called by the driver framework to initialize the driver instance.
zx::result<> Start() override;
};
} // namespace skeleton
#endif // EXAMPLES_DRIVERS_SKELETON_SKELETON_DRIVER_H_