init Bridge

This commit is contained in:
Jakub Vojvoda
2016-09-13 22:44:52 +02:00
parent ff25edeabb
commit 8d90b8dbad
2 changed files with 28 additions and 0 deletions

17
bridge/Bridge.cpp Normal file
View File

@@ -0,0 +1,17 @@
/*
* C++ Design Patterns: Bridge
* 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;
}