blob: 40913e9b6b1bdd21223fbb1ee657fc454f27e683 [file] [edit]
// 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_SUSPEND_COMPLETER_H_
#define LIB_DRIVER_COMPONENT_CPP_SUSPEND_COMPLETER_H_
#include <lib/driver/component/cpp/start_completer.h>
namespace fdf {
// This is the completer for the Suspend operation in |DriverBase|.
class SuspendCompleter final : public Completer {
public:
using Completer::Completer;
using Completer::operator();
};
} // namespace fdf
#endif // LIB_DRIVER_COMPONENT_CPP_SUSPEND_COMPLETER_H_