]> git.tdb.fi Git - libs/core.git/blobdiff - source/print.h
Add support for console I/O
[libs/core.git] / source / print.h
index 16f92258d2ee3ad0259185dcf7b65bfbb492e7d9..10fb02eedba2f11ff2ad9417c8daa1adb576012e 100644 (file)
@@ -10,6 +10,7 @@ Distributed under the LGPL
 
 #include <msp/strings/formatter.h>
 #include "base.h"
+#include "console.h"
 
 namespace Msp {
 namespace IO {
@@ -23,23 +24,48 @@ inline unsigned print(Base &o, const std::string &f)
 
 template<typename A1>
 inline unsigned print(Base &o, const std::string &f, A1 a1)
-{ return o.write(format(f, a1)); }
+{ return print(o, format(f, a1)); }
 
 template<typename A1, typename A2>
 inline unsigned print(Base &o, const std::string &f, A1 a1, A2 a2)
-{ return o.write(format(f, a1, a2)); }
+{ return print(o, format(f, a1, a2)); }
 
 template<typename A1, typename A2, typename A3>
 inline unsigned print(Base &o, const std::string &f, A1 a1, A2 a2, A3 a3)
-{ return o.write(format(f, a1, a2, a3)); }
+{ return print(o, format(f, a1, a2, a3)); }
 
 template<typename A1, typename A2, typename A3, typename A4>
 inline unsigned print(Base &o, const std::string &f, A1 a1, A2 a2, A3 a3, A4 a4)
-{ return o.write(format(f, a1, a2, a3, a4)); }
+{ return print(o, format(f, a1, a2, a3, a4)); }
 
 template<typename A1, typename A2, typename A3, typename A4, typename A5>
 inline unsigned print(Base &o, const std::string &f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5)
-{ return o.write(format(f, a1, a2, a3, a4, a5)); }
+{ return print(o, format(f, a1, a2, a3, a4, a5)); }
+
+/* The following functions print to console */
+
+inline unsigned print(const std::string &f)
+{ return print(cout, f); }
+
+template<typename A1>
+inline unsigned print(const std::string &f, A1 a1)
+{ return print(cout, f, a1); }
+
+template<typename A1, typename A2>
+inline unsigned print(const std::string &f, A1 a1, A2 a2)
+{ return print(cout, f, a1, a2); }
+
+template<typename A1, typename A2, typename A3>
+inline unsigned print(const std::string &f, A1 a1, A2 a2, A3 a3)
+{ return print(cout, f, a1, a2, a3); }
+
+template<typename A1, typename A2, typename A3, typename A4>
+inline unsigned print(const std::string &f, A1 a1, A2 a2, A3 a3, A4 a4)
+{ return print(cout, f, a1, a2, a3, a4); }
+
+template<typename A1, typename A2, typename A3, typename A4, typename A5>
+inline unsigned print(const std::string &f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5)
+{ return print(cout, f, a1, a2, a3, a4, a5); }
 
 } // namespace IO
 } // namespace Msp