| <<< Adapter Implementation | Index | Bridge >>> |
Abstract adapter adds convenience of Base interface to an existing Done implementation:
class Adapter : public Base {
public:
Adapter( Done* dp );
// Base functions
//...
private:
Done* m_done;
};//class Adapter
| <<< Adapter Implementation | Index | Bridge >>> |