14 lines
240 B
C++
14 lines
240 B
C++
|
#include <iostream.h>
|
||
|
|
||
|
class mystream : public ostream {
|
||
|
public:
|
||
|
mystream ( streambuf *str ) : ios ( str ), ostream ( str ) {};
|
||
|
};
|
||
|
|
||
|
void main( void ) {
|
||
|
|
||
|
mystream test ( cout.rdbuf() );
|
||
|
test << "Just for fun!" << endl;
|
||
|
}
|
||
|
|