note description: "[ Stream factory implementation for InpOut32 port driver connections. ]" legal : "See notice at end of class." status : "See notice at end of class."; author : "Paul Bates (paul.a.bates@gmail.com)" date : "$Date$" revision: "$Revision$" class PRT_INPOUT32_STREAM_FACTORY inherit PRT_STREAM_FACTORY_I feature -- Factory create_port_reader (a_port: PRT_CONNECTION; a_address_offset: NATURAL_8): PRT_STREAM_READER_I -- do create {PRT_INPOUT32_STREAM_READER} Result.make_with_offset (a_port, a_address_offset) end create_port_writer (a_port: PRT_CONNECTION; a_address_offset: NATURAL_8): PRT_STREAM_WRITER_I -- do create {PRT_INPOUT32_STREAM_WRITER} Result.make_with_offset (a_port, a_address_offset) end end