From: Sam S. <sam...@gm...> - 2006-05-25 21:34:54
|
Hmm, I didn't even see the notification. I think gmail is eating my messages from the list, I guess I should add the email address to my address book or something. -Sam On May 25, 2006, at 12:11 PM, Dan Potter wrote: > 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 >> > > > > _______________________________________________ > cadcdev-tiki mailing list > cad...@li... > https://lists.sourceforge.net/lists/listinfo/cadcdev-tiki |