From: Dan P. <ba...@al...> - 2006-05-25 16:12:32
|
Awww, no diff highlighting anymore? I guess it figures if SF is hosting it :) > Revision: 328 > Author: c99koder > Date: 2006-05-25 05:34:19 -0700 (Thu, 25 May 2006) > ViewCVS: http://svn.sourceforge.net/cadcdev/?rev=328&view=rev > > Log Message: > ----------- > Tiki: Add an additional output operator to Console > > Modified Paths: > -------------- > tiki/include/Tiki/drawables/console.h > Modified: tiki/include/Tiki/drawables/console.h > =================================================================== > --- tiki/include/Tiki/drawables/console.h 2006-05-25 01:25:04 UTC > (rev 327) > +++ tiki/include/Tiki/drawables/console.h 2006-05-25 12:34:19 UTC > (rev 328) > @@ -92,6 +92,12 @@ > m_colorData[(y*m_cols) + x] = attr; > } > > + ConsoleText& operator <<(std::string input) { > + printf("%s",input.c_str()); > + > + return *this; > + } > + > ConsoleText& operator <<(const char *input) { > printf("%s",input); > > > > This was sent by the SourceForge.net collaborative development > platform, the world's largest Open Source development site. > > > > _______________________________________________ > cadcdev-svn-commits mailing list > cad...@li... > https://lists.sourceforge.net/lists/listinfo/cadcdev-svn-commits > |