Added functions that print directly to cout.

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@1160 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
rich_sposato 2011-10-21 23:09:48 +00:00
parent 59530e538a
commit 62d74d47f8
2 changed files with 24 additions and 0 deletions

View file

@ -605,6 +605,14 @@ namespace Loki
LOKI_EXPORT
PrintfState<std::FILE*, char> FPrintf(std::FILE* f, const std::string& format);
/// Prints to cout.
LOKI_EXPORT
PrintfState<std::ostream&, char> FPrintf( const char * format );
/// Prints to cout.
LOKI_EXPORT
PrintfState<std::ostream&, char> FPrintf( const std::string & format );
LOKI_EXPORT
PrintfState<std::ostream&, char> FPrintf(std::ostream& f, const char* format);