Skip to content

Instantly share code, notes, and snippets.

@skonefal
Created July 15, 2015 13:08
Show Gist options
  • Save skonefal/51e9787393b213c2f0e3 to your computer and use it in GitHub Desktop.
Save skonefal/51e9787393b213c2f0e3 to your computer and use it in GitHub Desktop.
C++ Duck Typing
#include <iostream>
class Slon {
void SlonioweSprawy() {
return;
}
};
class Zmija {
public:
void DuckTypingInsideCpp() {
std::cout << "DuckTypingInsideCpp!" << std::endl;
}
int kot;
};
class Kobra {
public:
void DuckTypingInsideCpp() {
std::cout << "JestemPytonem!" << std::endl;
}
};
class PytongTemplate {
public:
template <typename T>
void tester(T test){
test.DuckTypingInsideCpp();
return;
}
};
int main() {
std::cout << "Hello, World!" << std::endl;
PytongTemplate pytong;
Zmija zmija;
Kobra kobra;
Slon slon;
pytong.tester(zmija);
pytong.tester(kobra);
// pytong.tester(slon); // will not compile
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment