16 |
|
redi::pstreambuf pin("/usr/local/bin/Xalan", args, std::ios_base::in); |
17 |
|
ios::StreamBufInputAdapter adaptor(pin); |
18 |
|
ext::Handle<xml::Document> document(xml::Parse(adaptor)); |
19 |
< |
ext::Handle<xml::Node> jargon(*document/"Jargon"); |
19 |
> |
ext::Handle<xml::Node> jargon(*document/"jargon"); |
20 |
|
|
21 |
< |
word = *jargon/"Word"; |
22 |
< |
pronunciation = *jargon/"Pronunciation"; |
23 |
< |
grammar = *jargon/"Grammar"; |
24 |
< |
definition = *jargon/"Definition"; |
21 |
> |
word = *jargon/"word"; |
22 |
> |
pronunciation = *jargon/"pronunciation"; |
23 |
> |
grammar = *jargon/"grammar"; |
24 |
> |
definition = *jargon/"definition"; |
25 |
|
} |
26 |
|
|
27 |
|
std::ostream& operator<<(std::ostream& sout, const Jargon& jargon) |