fork download
  1. #include <iostream>
  2. #include <functional>
  3. using namespace std;
  4.  
  5. class Button {
  6. function<void(void)> action;
  7. public:
  8. Button(function<void(void)> f) : action(f) {}
  9. void click() {
  10. action();
  11. }
  12. };
  13.  
  14. class WavePlayer {
  15. public:
  16. void load() {
  17. cout << "loaded" << endl;
  18. }
  19. };
  20.  
  21. int main() {
  22. WavePlayer player;
  23. Button b([&] {
  24. player.load();
  25. });
  26. b.click();
  27. return 0;
  28. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
loaded