Small fix of assertion message in INITIALIZE-INSTANCE of DYNAMIC-BUFFER.
[iolib.git] / io.streams / zeta / stream.lisp
blob7e334e83009980bdb36b6744a8cd0891d6aca13a
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; indent-tabs-mode: nil -*-
2 ;;;
3 ;;; --- Streams.
4 ;;;
6 (in-package :io.zeta-streams)
8 ;;;-------------------------------------------------------------------------
9 ;;; Classes and Types
10 ;;;-------------------------------------------------------------------------
12 (defclass zeta-stream () ())
14 (defclass single-channel-zeta-stream (single-channel-buffer)
15 ())
17 (defclass dual-channel-zeta-stream (dual-channel-buffer)
18 ())
21 ;;;-------------------------------------------------------------------------
22 ;;; Generic Functions
23 ;;;-------------------------------------------------------------------------
27 ;;;-------------------------------------------------------------------------
28 ;;; Constructors
29 ;;;-------------------------------------------------------------------------