1 2 class TestOverload { 3 // This one shouldnt' be generated. 4 TestOverload(); 5 public: 6 TestOverload(int); 7 TestOverload(double); 8 }; 9 10 class TestPublicNoArgs { 11 public: 12 TestPublicNoArgs(); 13 }; 14
1 2 class TestOverload { 3 // This one shouldnt' be generated. 4 TestOverload(); 5 public: 6 TestOverload(int); 7 TestOverload(double); 8 }; 9 10 class TestPublicNoArgs { 11 public: 12 TestPublicNoArgs(); 13 }; 14