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

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

#include <StreamAdaptor.hxx>

+ Inheritance diagram for cosmos::InputStreamAdaptor:

Public Member Functions

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

Additional Inherited Members

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

Detailed Description

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

Definition at line 68 of file StreamAdaptor.hxx.

Constructor & Destructor Documentation

◆ InputStreamAdaptor() [1/2]

cosmos::InputStreamAdaptor::InputStreamAdaptor ( FileDescriptor fd)
inlineexplicit

Definition at line 72 of file StreamAdaptor.hxx.

72 :
73 StreamAdaptor<std::istream>{fd, std::ios_base::in}
74 {}

◆ InputStreamAdaptor() [2/2]

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

Wrap the read end of a Pipe object.

Definition at line 77 of file StreamAdaptor.hxx.

77 :
78 InputStreamAdaptor{p.takeReadEndOwnership()}
79 {}

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