class_adapter_pattern::Adaptee

class Adaptee

The Adaptee class provides specific functionality.

The Adaptee has methods that perform useful operations but with an interface that is incompatible with the Target interface.

Subclassed by class_adapter_pattern::Adapter

Public Functions

inline std::string specificRequest() const

Performs a specific operation provided by the Adaptee.

This method showcases the Adaptee’s unique functionality.

Returns:

A string response indicating the Adaptee’s behavior.