Files
design-patterns-cpp/adapter/Adapter.cpp
Jakub Vojvoda ff25edeabb init Adapter
2016-09-13 22:44:15 +02:00

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;
}