main.cpp 469 B

1234567891011121314151617181920212223242526272829
  1. // Taken from https://developer.gnome.org/libsigc++-tutorial/stable/ch02.html
  2. #include <iostream>
  3. #include <sigc++/sigc++.h>
  4. class AlienDetector
  5. {
  6. public:
  7. AlienDetector() {}
  8. void run() {}
  9. sigc::signal<void> signal_detected;
  10. };
  11. void warn_people()
  12. {
  13. std::cout << "There are aliens in the carpark!" << std::endl;
  14. }
  15. int main()
  16. {
  17. AlienDetector mydetector;
  18. mydetector.signal_detected.connect(sigc::ptr_fun(warn_people));
  19. mydetector.run();
  20. return 0;
  21. }