fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. template <const int EVENT>
  5. class Special {
  6. public:
  7. virtual ~Special() = default;
  8.  
  9. protected:
  10. Special() {
  11. call();
  12. }
  13. virtual void call() = 0;
  14. };
  15.  
  16. class Test : public Special<0>, public Special<2> {
  17. private:
  18. void call() override;
  19. };
  20.  
  21. template<>
  22. void Test::Special<0>::call() {
  23. cout << "Call to Special<0>'s call" << endl;
  24. }
  25.  
  26. template<>
  27. void Test::Special<2>::call() {
  28. cout << "Call to Special<2>'s call" << endl;
  29. }
  30.  
  31. int main() {
  32. Test t; // Calls constructors
  33. return 0;
  34. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
Call to Special<0>'s call
Call to Special<2>'s call