blob: f30572e656e232a3b13c66a95f9725c6e5749f59 [file] [log] [blame]
// Copyright 2019 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 SRC_DEVELOPER_CMD_TASKS_QUIT_TASK_H_
#define SRC_DEVELOPER_CMD_TASKS_QUIT_TASK_H_
#include "src/developer/cmd/tasks/task.h"
namespace cmd {
class QuitTask : public Task {
public:
explicit QuitTask(async_dispatcher_t* dispatcher);
~QuitTask() override;
// |Task| implementation:
zx_status_t Execute(Command command, CompletionCallback callback) override;
};
} // namespace cmd
#endif // SRC_DEVELOPER_CMD_TASKS_QUIT_TASK_H_