|
|
|
|
@ -98,27 +98,44 @@ const Foo& Bar::operator[](int i) const
@@ -98,27 +98,44 @@ const Foo& Bar::operator[](int i) const
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Quux::Quux() |
|
|
|
|
Quux::Quux() : _setterWithDefaultOverload(0) |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Quux::Quux(int i) |
|
|
|
|
Quux::Quux(int i) : Quux() |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Quux::Quux(char c) |
|
|
|
|
Quux::Quux(char c) : Quux() |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Quux::Quux(Foo f) |
|
|
|
|
Quux::Quux(Foo f) : Quux() |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Quux::~Quux() |
|
|
|
|
{ |
|
|
|
|
if (_setterWithDefaultOverload) |
|
|
|
|
{ |
|
|
|
|
delete _setterWithDefaultOverload; |
|
|
|
|
_setterWithDefaultOverload = 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Foo* Quux::setterWithDefaultOverload() |
|
|
|
|
{ |
|
|
|
|
return _setterWithDefaultOverload; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void Quux::setSetterWithDefaultOverload(Foo* value) |
|
|
|
|
{ |
|
|
|
|
_setterWithDefaultOverload = value; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QColor::QColor() |
|
|
|
|
{ |
|
|
|
|
@ -527,6 +544,10 @@ MethodsWithDefaultValues::MethodsWithDefaultValues(QRect* pointer, float f, int
@@ -527,6 +544,10 @@ MethodsWithDefaultValues::MethodsWithDefaultValues(QRect* pointer, float f, int
|
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
MethodsWithDefaultValues::~MethodsWithDefaultValues() |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void MethodsWithDefaultValues::defaultPointer(Foo *ptr) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|