#include "Article.h"#include <strstream>Go to the source code of this file.
Namespaces | |
| namespace | std |
Functions | |
| ostream & | operator<< (ostream &os, Article &art) |
|
||||||||||||
|
Definition at line 371 of file Article.cc. References Article::_text.
00372 {
00373 os << art._text;
00374 return os;
00375 }
|
1.3.6-20040222