|
a/src/ohproduct.cxx |
|
b/src/ohproduct.cxx |
|
... |
|
... |
55 |
|
55 |
|
56 |
for (auto it = o_sources.begin(); it != o_sources.end(); it++) {
|
56 |
for (auto it = o_sources.begin(); it != o_sources.end(); it++) {
|
57 |
csxml += string(" <Source>\n") +
|
57 |
csxml += string(" <Source>\n") +
|
58 |
" <Name>" + *it + "</Name>\n" +
|
58 |
" <Name>" + *it + "</Name>\n" +
|
59 |
" <Type>" + *it + "</Type>\n" +
|
59 |
" <Type>" + *it + "</Type>\n" +
|
60 |
" <Visible>true</Visible>\n" +
|
60 |
" <Visible>1</Visible>\n" +
|
61 |
" </Source>\n";
|
61 |
" </Source>\n";
|
62 |
}
|
62 |
}
|
63 |
csxml += string("</SourceList>\n");
|
63 |
csxml += string("</SourceList>\n");
|
64 |
LOGDEB("OHProduct::OHProduct: sources: " << csxml << endl);
|
64 |
LOGDEB("OHProduct::OHProduct: sources: " << csxml << endl);
|
65 |
|
65 |
|