#include <catch_stream.h>
Definition at line 1150 of file catch.hpp.
◆ ReusableStringStream() [1/2]
Catch::ReusableStringStream::ReusableStringStream |
( |
| ) |
|
Definition at line 163 of file catch_stream.cpp.
166 {}
auto get() -> std::ostream &
static auto getMutable() -> MutableInterfaceT &
◆ ~ReusableStringStream() [1/2]
Catch::ReusableStringStream::~ReusableStringStream |
( |
| ) |
|
Definition at line 168 of file catch_stream.cpp.
168 {
169 static_cast<std::ostringstream*
>( m_oss )->
str(
"");
170 m_oss->clear();
172 }
auto str() const -> std::string
◆ ReusableStringStream() [2/2]
Catch::ReusableStringStream::ReusableStringStream |
( |
| ) |
|
◆ ~ReusableStringStream() [2/2]
Catch::ReusableStringStream::~ReusableStringStream |
( |
| ) |
|
◆ get() [1/2]
auto Catch::ReusableStringStream::get |
( |
| ) |
-> std::ostream& |
|
inline |
◆ get() [2/2]
auto Catch::ReusableStringStream::get |
( |
| ) |
-> std::ostream& |
|
inline |
◆ operator<<() [1/2]
◆ operator<<() [2/2]
Definition at line 1160 of file catch.hpp.
1160 {
1162 return *this;
1163 }
◆ str() [1/2]
auto Catch::ReusableStringStream::str |
( |
| ) |
const -> std::string |
Definition at line 174 of file catch_stream.cpp.
174 {
175 return static_cast<std::ostringstream*
>( m_oss )->
str();
176 }
◆ str() [2/2]
auto Catch::ReusableStringStream::str |
( |
| ) |
const -> std::string |
The documentation for this class was generated from the following files:
- libraries/sys-vm/external/Catch2/include/internal/catch_stream.h
- libraries/sys-vm/external/Catch2/single_include/catch2/catch.hpp
- libraries/sys-vm/external/Catch2/include/internal/catch_stream.cpp