aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Core/StreamAsynchronousIO.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Core/StreamAsynchronousIO.h')
-rw-r--r--include/lldb/Core/StreamAsynchronousIO.h31
1 files changed, 14 insertions, 17 deletions
diff --git a/include/lldb/Core/StreamAsynchronousIO.h b/include/lldb/Core/StreamAsynchronousIO.h
index b069cfd496e1..b3bb49e16e35 100644
--- a/include/lldb/Core/StreamAsynchronousIO.h
+++ b/include/lldb/Core/StreamAsynchronousIO.h
@@ -1,4 +1,5 @@
-//===-- StreamAsynchronousIO.h -----------------------------------*- C++ -*-===//
+//===-- StreamAsynchronousIO.h -----------------------------------*- C++
+//-*-===//
//
// The LLVM Compiler Infrastructure
//
@@ -16,24 +17,20 @@
namespace lldb_private {
-class StreamAsynchronousIO :
- public Stream
-{
+class StreamAsynchronousIO : public Stream {
public:
- StreamAsynchronousIO (Debugger &debugger, bool for_stdout);
-
- ~StreamAsynchronousIO () override;
-
- void
- Flush () override;
-
- size_t
- Write (const void *src, size_t src_len) override;
-
+ StreamAsynchronousIO(Debugger &debugger, bool for_stdout);
+
+ ~StreamAsynchronousIO() override;
+
+ void Flush() override;
+
+ size_t Write(const void *src, size_t src_len) override;
+
private:
- Debugger &m_debugger;
- std::string m_data;
- bool m_for_stdout;
+ Debugger &m_debugger;
+ std::string m_data;
+ bool m_for_stdout;
};
} // namespace lldb_private