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

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

#include <StreamAdaptor.hxx>

+ Inheritance diagram for cosmos::OutputStreamAdaptor:

Public Member Functions

 OutputStreamAdaptor (FileDescriptor fd)
 
 OutputStreamAdaptor (Pipe &p)
 Wrap the write end of a Pipe object.
 
void close () override
 Close the underlying file descriptor.
 
- Public Member Functions inherited from cosmos::StreamAdaptor< std::ostream >
FileDescriptor fileDesc ()
 

Additional Inherited Members

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

Detailed Description

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

Definition at line 83 of file StreamAdaptor.hxx.

Constructor & Destructor Documentation

◆ OutputStreamAdaptor() [1/2]

cosmos::OutputStreamAdaptor::OutputStreamAdaptor ( FileDescriptor fd)
inlineexplicit

Definition at line 87 of file StreamAdaptor.hxx.

87 :
88 StreamAdaptor<std::ostream>{fd, std::ios_base::out}
89 {}

◆ OutputStreamAdaptor() [2/2]

cosmos::OutputStreamAdaptor::OutputStreamAdaptor ( Pipe & p)
inlineexplicit

Wrap the write end of a Pipe object.

Definition at line 92 of file StreamAdaptor.hxx.

92 :
93 OutputStreamAdaptor{p.takeWriteEndOwnership()}
94 {}

Member Function Documentation

◆ close()

void cosmos::OutputStreamAdaptor::close ( )
inlineoverridevirtual

Close the underlying file descriptor.

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

Definition at line 96 of file StreamAdaptor.hxx.

96 {
97 *this << std::flush;
99 }
virtual void close()
Close the underlying file descriptor.

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