================ rvDebuggerClient::AddBreakpoint Adds a breakpoint to the client and server with the give nfilename and linenumber ================ */
| 496 | ================ |
| 497 | */ |
| 498 | int rvDebuggerClient::AddBreakpoint ( const char* filename, int lineNumber, bool onceOnly ) |
| 499 | { |
| 500 | int index = mBreakpoints.Append ( new rvDebuggerBreakpoint ( filename, lineNumber, -1, onceOnly ) ); |
| 501 | |
| 502 | SendAddBreakpoint ( *mBreakpoints[index] ); |
| 503 | |
| 504 | return index; |
| 505 | } |
| 506 | |
| 507 | /* |
| 508 | ================ |
no test coverage detected