Debugging a Program With dbx

stop inclass classname

To stop in all member functions of a template class:


(dbx)stop inclass Array
(2) stop inclass Array

Use stop inclass to set breakpoints at all member functions of a particular template class:


(dbx) stop inclass Array<int>
(2) stop inclass Array<int>