class ReaderWriter

Defined at line 55 of file ../../third_party/github.com/google/cppdap/src/include/dap/io.h

ReaderWriter is an interface that combines the Reader and Writer interfaces.

Public Methods

std::shared_ptr<ReaderWriter> create (const std::shared_ptr<Reader> & , const std::shared_ptr<Writer> & )

create() returns a ReaderWriter that delegates the interface methods on to

the provided Reader and Writer.

isOpen() returns true if the Reader and Writer both return true for

isOpen().

close() closes both the Reader and Writer.