add Class Adapter

This commit is contained in:
Jakub Vojvoda
2016-09-14 23:09:27 +02:00
parent 8d90b8dbad
commit af3869d566
2 changed files with 59 additions and 17 deletions

View File

@@ -1,17 +0,0 @@
/*
* C++ Design Patterns: Adapter
* Author: Jakub Vojvoda [github.com/JakubVojvoda]
* 2016
*
* Source code is licensed under MIT licence
* (for more details see LICENCE)
*
*/
#include <iostream>
int main()
{
return 0;
}

59
adapter/ClassAdapter.cpp Normal file
View File

@@ -0,0 +1,59 @@
/*
* C++ Design Patterns: Adapter (Class scope)
* Author: Jakub Vojvoda [github.com/JakubVojvoda]
* 2016
*
* Source code is licensed under MIT licence
* (for more details see LICENCE)
*
*/
#include <iostream>
/*
* Target
* defines specific interface that Client uses
*/
class Target {
public:
virtual void request() = 0;
// ...
};
/*
* Adaptee
* all requests get delegated to the Adaptee which defines
* an existing interface that needs adapting
*/
class Adaptee {
public:
void specificRequest() {
std::cout << "specific request" << std::endl;
// ...
}
// ...
};
/*
* Adapter
* implements the Target interface and lets the Adaptee respond
* to request on a Target by extending both classes
* ie adapts the interface of Adaptee to the Target interface
*/
class Adapter : public Target, private Adaptee {
public:
virtual void request() {
specificRequest();
// ...
}
// ...
};
int main()
{
Target *t = new Adapter();
t->request();
return 0;
}