llvm/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp

//===-- GDBRemoteCommunicationHistory.cpp ---------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "GDBRemoteCommunicationHistory.h"

// Other libraries and framework includes
#include "lldb/Utility/ConstString.h"
#include "lldb/Utility/Log.h"

usingnamespacellvm;
usingnamespacelldb;
usingnamespacelldb_private;
usingnamespacelldb_private::process_gdb_remote;

GDBRemoteCommunicationHistory::GDBRemoteCommunicationHistory(uint32_t size)
    :{}

GDBRemoteCommunicationHistory::~GDBRemoteCommunicationHistory() = default;

void GDBRemoteCommunicationHistory::AddPacket(char packet_char,
                                              GDBRemotePacket::Type type,
                                              uint32_t bytes_transmitted) {}

void GDBRemoteCommunicationHistory::AddPacket(const std::string &src,
                                              uint32_t src_len,
                                              GDBRemotePacket::Type type,
                                              uint32_t bytes_transmitted) {}

void GDBRemoteCommunicationHistory::Dump(Stream &strm) const {}

void GDBRemoteCommunicationHistory::Dump(Log *log) const {}