| 696 | } |
| 697 | |
| 698 | ProjectBuildOutputParser ProjectBuildManager::getOutputParser( const std::string& buildName ) { |
| 699 | auto buildIt = mBuilds.find( buildName ); |
| 700 | if ( buildIt != mBuilds.end() ) |
| 701 | return buildIt->second.mOutputParser; |
| 702 | return {}; |
| 703 | } |
| 704 | |
| 705 | ProjectBuild* ProjectBuildManager::getBuild( const std::string& buildName ) { |
| 706 | auto buildIt = mBuilds.find( buildName ); |