| 76 | } |
| 77 | |
| 78 | void BreakpointsModel::insert( const std::string& filePath, |
| 79 | const SourceBreakpointStateful& breakpoint ) { |
| 80 | Lock l( mResourceLock ); |
| 81 | mBreakpoints.emplace_back( filePath, breakpoint ); |
| 82 | invalidate( Model::UpdateFlag::DontInvalidateIndexes ); |
| 83 | } |
| 84 | |
| 85 | void BreakpointsModel::erase( const std::string& filePath, |
| 86 | const SourceBreakpointStateful& breakpoint ) { |
no outgoing calls