Memory streams - Move constructor for T_MemoryOutputStream

This commit is contained in:
Emmanuel BENOîT 2020-03-08 13:12:43 +01:00
parent a4a2a9eda4
commit 90cf63c592
2 changed files with 13 additions and 0 deletions
include/ebcl

View file

@ -47,6 +47,7 @@ class T_MemoryOutputStream final : public A_OutputStream
T_MemoryOutputStream( ) = delete;
T_MemoryOutputStream( void* buffer , size_t size , F_Resizer resizer = nullptr );
T_MemoryOutputStream( T_MemoryOutputStream&& source ) noexcept;
template< int S , typename T >
explicit T_MemoryOutputStream( T_FixedBuffer< S , T >& buffer );