| 767 | } |
| 768 | |
| 769 | void onBreakpointsReset ( const char * file, int breakpointsNum ) { |
| 770 | for_each_debug_agent([&](const DebugAgentPtr & pAgent){ |
| 771 | pAgent->onBreakpointsReset( file, breakpointsNum ); |
| 772 | }); |
| 773 | } |
| 774 | |
| 775 | class CppOnlyDebugAgent : public DebugAgent { |
| 776 | public: |
nothing calls this directly
no test coverage detected