mirror of
https://github.com/JakubVojvoda/design-patterns-cpp.git
synced 2025-12-17 12:54:36 +03:00
17 lines
234 B
C++
17 lines
234 B
C++
/*
|
|
* 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;
|
|
}
|