blob: 8bcb72fa298bc98b8d3c53a58a31921372e24ab2 [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_DEBUG_ZXDB_CONSOLE_STATUS_H_
#define SRC_DEVELOPER_DEBUG_ZXDB_CONSOLE_STATUS_H_
#include "src/developer/debug/zxdb/console/output_buffer.h"
namespace zxdb {
class ConsoleContext;
class Session;
class System;
// These functions return diagnostic and help information on the given
// category of stuff.
OutputBuffer GetConnectionStatus(const Session* session);
OutputBuffer GetJobStatus(ConsoleContext* context);
OutputBuffer GetProcessStatus(ConsoleContext* context);
} // namespace zxdb
#endif // SRC_DEVELOPER_DEBUG_ZXDB_CONSOLE_STATUS_H_