libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::InputOutputStreamAdaptor Class Reference

Wraps a file descriptor in a std::iostream interface. More...

#include <StreamAdaptor.hxx>

+ Inheritance diagram for cosmos::InputOutputStreamAdaptor:

Public Member Functions

 InputOutputStreamAdaptor (FileDescriptor fd)
 
void close () override
 Close the underlying file descriptor.
 
- Public Member Functions inherited from cosmos::StreamAdaptor< std::iostream >
FileDescriptor fileDesc ()
 

Additional Inherited Members

- Protected Member Functions inherited from cosmos::StreamAdaptor< std::iostream >
 StreamAdaptor (FileDescriptor fd, std::ios_base::openmode mode)
 
- Protected Attributes inherited from cosmos::StreamAdaptor< std::iostream >
StdioFileBuf m_buffer
 

Detailed Description

Wraps a file descriptor in a std::iostream interface.

Definition at line 103 of file StreamAdaptor.hxx.

Constructor & Destructor Documentation

◆ InputOutputStreamAdaptor()

cosmos::InputOutputStreamAdaptor::InputOutputStreamAdaptor ( FileDescriptor fd)
inlineexplicit

Definition at line 107 of file StreamAdaptor.hxx.

107 :
108 StreamAdaptor<std::iostream>{fd, std::ios_base::in | std::ios_base::out}
109 {}

Member Function Documentation

◆ close()

void cosmos::InputOutputStreamAdaptor::close ( )
inlineoverridevirtual

Close the underlying file descriptor.

Reimplemented from cosmos::StreamAdaptor< std::iostream >.

Definition at line 111 of file StreamAdaptor.hxx.

111 {
112 *this << std::flush;
114 }
virtual void close()
Close the underlying file descriptor.

The documentation for this class was generated from the following file: