object_adapter_pattern::Adaptee

class Adaptee

The Adaptee class provides existing functionality needing adaptation.

The Adaptee defines methods that are incompatible with the Target interface but offer useful functionality. The Adapter class bridges the gap between the Adaptee and the Target interface, enabling seamless integration.

Public Functions

inline void specificRequest() const

A specific method offered by the Adaptee.

This method demonstrates functionality that needs adaptation to match the Target interface.