Exemplo n.º 1
0
		const Compiler* get(std::string comp) throw(CompilerNotFoundException){
			return (*cs.find(key(comp))).second;
		}
Exemplo n.º 2
0
Arquivo: man.hpp Projeto: mkn/mkn.kul
 const SCM& get(const std::string& s) throw(NotFoundException){
     if(SCMs.count(s) > 0) return *(*SCMs.find(s)).second;
     KEXCEPT(NotFoundException, "Source Control Management for " + s + " is not implemented");
 }