blob: 67349f374f97ae62d80c2e35d833db2581044f76 [file] [log] [blame] [edit]
// 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.
#include "src/developer/cmd/tasks/task.h"
namespace cmd {
Task::Task(async_dispatcher_t* dispatcher) : dispatcher_(dispatcher) {}
Task::~Task() = default;
void Task::Complete(Autocomplete* autocomplete) { autocomplete->CompleteAsPath(); }
} // namespace cmd