comparison src/checker.cpp @ 19:c80c55cabfcd

Untabify
author Chris Cannam
date Tue, 01 Nov 2016 15:16:08 +0000
parents 25e00373f597
children 7a20698b4c29
comparison
equal deleted inserted replaced
18:7eff522b23ae 19:c80c55cabfcd
43 { 43 {
44 LogCallback cb; 44 LogCallback cb;
45 KnownPlugins kp("./plugin-checker-helper", &cb); //!!! 45 KnownPlugins kp("./plugin-checker-helper", &cb); //!!!
46 46
47 for (auto t: kp.getKnownPluginTypes()) { 47 for (auto t: kp.getKnownPluginTypes()) {
48 cout << "successful libraries for plugin type \"" 48 cout << "successful libraries for plugin type \""
49 << kp.getTagFor(t) << "\":" << endl; 49 << kp.getTagFor(t) << "\":" << endl;
50 for (auto lib: kp.getCandidateLibrariesFor(t)) { 50 for (auto lib: kp.getCandidateLibrariesFor(t)) {
51 cout << lib << endl; 51 cout << lib << endl;
52 } 52 }
53 } 53 }
54 54
55 cout << "Failure message (if any):" << endl; 55 cout << "Failure message (if any):" << endl;
56 cout << kp.getFailureReport() << endl; 56 cout << kp.getFailureReport() << endl;
57 } 57 }