blob: 1eda1391f510bd07372711e8d82561b521667eaa [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_COMMANDS_VERB_STDOUT_H_
#define SRC_DEVELOPER_DEBUG_ZXDB_CONSOLE_COMMANDS_VERB_STDOUT_H_
#include "src/developer/debug/zxdb/console/verbs.h"
namespace zxdb {
class Command;
class ConsoleContext;
class Err;
VerbRecord GetStdoutVerbRecord();
// Backend shared between the stdout and stderr verbs.
extern const char kStdioHelp[];
Err RunVerbStdio(Verb io_type, const Command& cmd, ConsoleContext* context);
} // namespace zxdb
#endif // SRC_DEVELOPER_DEBUG_ZXDB_CONSOLE_COMMANDS_VERB_STDOUT_H_