Lines Matching defs:ostream
89 ofstream ostream;
104 ostream.open(argv[3], ifstream::out);
105 if (!ostream.is_open()) {
212 ostream << "<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\">\n<title>" << version << "</title>\n</head>\n<body>" << endl;
213 ostream << "<h1>" << version << "</h1>\n";
215 ostream << "<hr>\n<a name=\"Contents\"></a><h2>Contents</h2>\n<ol>\n";
217 ostream << "<li><a href=\"#Chapter" << i+1 << "\">" << chapters[i].c_str() << "</a></li>\n";
218 ostream << "</ol>\n<hr>\n";
220 ostream << sout.str();
221 ostream << "</html>" << endl << "</body>" << endl;