Merge pull request #8869
2c98a82
Add byte_stream alue_type and data() (Lee *!* Clagett)
This commit is contained in:
commit
1261f0ac09
|
@ -74,6 +74,7 @@ namespace epee
|
|||
public:
|
||||
using char_type = std::uint8_t;
|
||||
using Ch = char_type;
|
||||
using value_type = char_type;
|
||||
|
||||
//! Increase internal buffer by at least `byte_stream_increase` bytes.
|
||||
byte_stream() noexcept
|
||||
|
@ -86,6 +87,7 @@ namespace epee
|
|||
~byte_stream() noexcept = default;
|
||||
byte_stream& operator=(byte_stream&& rhs) noexcept;
|
||||
|
||||
std::uint8_t* data() noexcept { return buffer_.get(); }
|
||||
const std::uint8_t* data() const noexcept { return buffer_.get(); }
|
||||
std::uint8_t* tellp() const noexcept { return next_write_; }
|
||||
std::size_t available() const noexcept { return end_ - next_write_; }
|
||||
|
|
Loading…
Reference in New Issue