Design Pattern Examples
Overview of object-oriented design patterns
Adapter_FrontEndClass.h File Reference

Declaration of the DataReaderWriter class used in the Adapter Pattern. More...

#include <exception>
#include <string>
#include <vector>
#include <stdint.h>
Include dependency graph for Adapter_FrontEndClass.h:
This graph shows which files directly or indirectly include this file:

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  DataReaderWriter
 Represents a data reader/writer to a caller. More...
 

Namespaces

namespace  DesignPatternExamples_cpp
 The namespace containing all Design Pattern Examples implemented in C++.
 

Macros

#define __ADAPTER_H__
 

Typedefs

typedef std::vector< uint8_t > ByteArray
 

Detailed Description

Declaration of the DataReaderWriter class used in the Adapter Pattern.

Definition in file Adapter_FrontEndClass.h.

Macro Definition Documentation

◆ __ADAPTER_H__

#define __ADAPTER_H__

Definition at line 8 of file Adapter_FrontEndClass.h.