]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/print_sequence.hpp
testing new non-autotools build system
[chaz/yoink] / src / stlplus / strings / print_sequence.hpp
diff --git a/src/stlplus/strings/print_sequence.hpp b/src/stlplus/strings/print_sequence.hpp
new file mode 100644 (file)
index 0000000..411ddd5
--- /dev/null
@@ -0,0 +1,46 @@
+#ifndef STLPLUS_PRINT_SEQUENCE\r
+#define STLPLUS_PRINT_SEQUENCE\r
+////////////////////////////////////////////////////////////////////////////////\r
+\r
+//   Author:    Andy Rushton\r
+//   Copyright: (c) Southampton University 1999-2004\r
+//              (c) Andy Rushton           2004-2009\r
+//   License:   BSD License, see ../docs/license.html\r
+\r
+//   Generate string representations of sequences represented by forward iterators\r
+\r
+////////////////////////////////////////////////////////////////////////////////\r
+#include "strings_fixes.hpp"\r
+#include <string>\r
+#include <iostream>\r
+\r
+namespace stlplus\r
+{\r
+\r
+  ////////////////////////////////////////////////////////////////////////////////\r
+  // any forward iterator sequence\r
+\r
+  template <typename I, typename S>\r
+  void print_sequence(std::ostream& device,\r
+                      I begin, I end, \r
+                      S print_fn,\r
+                      const std::string& separator);\r
+\r
+\r
+  ////////////////////////////////////////////////////////////////////////////////\r
+  // any forward iterator sequence of pairs\r
+\r
+  template <typename I, typename S1, typename S2>\r
+  void print_pair_sequence(std::ostream& device,\r
+                           I begin, I end,\r
+                           S1 print_fn1,\r
+                           S2 print_fn2,\r
+                           const std::string& pair_separator,\r
+                           const std::string& separator);\r
+\r
+  ////////////////////////////////////////////////////////////////////////////////\r
+\r
+} // end namespace stlplus\r
+\r
+#include "print_sequence.tpp"\r
+#endif\r
This page took 0.020482 seconds and 4 git commands to generate.