About
Contact
QtCreator
KDevelop
Solarized
1
class
MyClass
{
2
public
:
3
MyClass
() {}
4
void
foo
();
5
};
6
7
void
MyClass
::
foo
() {
8
return
;
// Set break point at this line.
9
}
10
11
int
main
() {
12
MyClass
mc
;
13
mc
.
foo
();
14
return
0
;
15
}
16