blob: 5ba6a8dd8e9996232b340fc18cc59d9ee5169a8a [file]
// Copyright 2026 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 LIB_DRIVER_COMPONENT_CPP_STOP_COMPLETER_H_
#define LIB_DRIVER_COMPONENT_CPP_STOP_COMPLETER_H_
#include <lib/driver/component/cpp/start_completer.h>
namespace fdf {
// This is the completer for the Stop operation in |DriverBase2|.
class StopCompleter final : public Completer {
public:
using Completer::Completer;
using Completer::operator();
};
} // namespace fdf
#endif // LIB_DRIVER_COMPONENT_CPP_STOP_COMPLETER_H_