opnsense-src/include/lldb/Core/StreamString.h
Ed Maste 205afe6798 Import LLDB as of upstream SVN r225923 (git 2b588ecd)
This corresponds with the branchpoint for the 3.6 release.
A number of files not required for the FreeBSD build have been removed.

Sponsored by:	DARPA, AFRL
2015-02-06 21:38:51 +00:00

67 lines
1.2 KiB
C++

//===-- StreamString.h ------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_StreamString_h_
#define liblldb_StreamString_h_
#include <string>
#include "lldb/Core/Stream.h"
namespace lldb_private {
class StreamString : public Stream
{
public:
StreamString ();
StreamString (uint32_t flags,
uint32_t addr_size,
lldb::ByteOrder byte_order);
virtual
~StreamString ();
virtual void
Flush ();
virtual size_t
Write (const void *s, size_t length);
void
Clear();
bool
Empty() const;
const char *
GetData () const;
size_t
GetSize() const;
size_t
GetSizeOfLastLine () const;
std::string &
GetString();
const std::string &
GetString() const;
void
FillLastLineToColumn (uint32_t column, char fill_char);
protected:
std::string m_packet;
};
} // namespace lldb_private
#endif // #ifndef liblldb_StreamString_h_