Design Pattern Examples
Overview of object-oriented design patterns
adapter_frontendclass.py File Reference

The DataReaderWriter class used in the Adapter Pattern. More...

Go to the source code of this file.

Classes

class  DataReaderWriterInitException
 Represents an error that occurred during initialization or shut down of the Data reader/writer. More...
 
class  DataReaderWriterException
 Represents an error that occurred when reading or writing data in the Data reader/writer. More...
 
class  MemoryBlock
 Represents the memory blocks that can be accessed. More...
 
class  DataReaderWriter
 Represents a data reader/writer to a caller. More...
 

Namespaces

namespace  DesignPatternExamples_python
 The DesignPatternExamples_python package, containing 20 examples of design patterns, each in their own namespace.
 
namespace  DesignPatternExamples_python.adapter
 
namespace  DesignPatternExamples_python.adapter.adapter_frontendclass
 

Detailed Description

The DataReaderWriter class used in the Adapter Pattern.

Definition in file adapter_frontendclass.py.