Searched defs:OutputStream (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/io/
H A Dinkscapestream.h155 * to make an OutputStream that is part of a chain should inherit from
159 class OutputStream class in namespace:Inkscape::IO
167 OutputStream() {} function in class:Inkscape::IO::OutputStream
172 virtual ~OutputStream() {}
195 }; // class OutputStream
202 class BasicOutputStream : public OutputStream
207 BasicOutputStream(OutputStream &destinationStream);
221 OutputStream &destination;
231 class StdOutputStream : public OutputStream
604 * Class for placing a Writer on an open OutputStream
[all...]
/inkscape/cxxtest/cxxtest/
H A DErrorFormatter.h19 class OutputStream class in namespace:CxxTest
22 virtual ~OutputStream() {}
24 virtual OutputStream &operator<<( unsigned /*number*/ ) { return *this; }
25 virtual OutputStream &operator<<( const char * /*string*/ ) { return *this; }
27 typedef void (*Manipulator)( OutputStream & );
29 virtual OutputStream &operator<<( Manipulator m ) { m( *this ); return *this; }
30 static void endl( OutputStream &o ) { (o << "\n").flush(); }
36 ErrorFormatter( OutputStream *o, const char *preLine = ":", const char *postLine = "" ) :
59 static void totalTests( OutputStream &o )
208 OutputStream *outputStrea
[all...]

Completed in 520 milliseconds