qb  2.0.0.0
C++17 Actor Framework
qb Issue Watch Star Fork Follow @isndev
Loading...
Searching...
No Matches
stream.h File Reference

Core stream abstraction classes for the QB IO library. More...

Include dependency graph for stream.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  qb::io::istream< _IO_ >
 Input stream template class. More...
class  qb::io::ostream< _IO_ >
 Output stream template class. More...
class  qb::io::stream< _IO_ >
 Combined input/output stream template class. More...

Detailed Description

Core stream abstraction classes for the QB IO library.

This file provides the fundamental stream abstraction classes that serve as the foundation for all transport implementations in the QB IO library. It defines three template classes:

  • istream: Input stream functionality
  • ostream: Output stream functionality
  • stream: Combined input/output stream functionality

These templates are parameterized by an IO type that implements the actual transport-specific operations.

Author
qb - C++ Actor Framework

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.