]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/string_sequence.hpp
testing new non-autotools build system
[chaz/yoink] / src / stlplus / strings / string_sequence.hpp
diff --git a/src/stlplus/strings/string_sequence.hpp b/src/stlplus/strings/string_sequence.hpp
new file mode 100644 (file)
index 0000000..f029031
--- /dev/null
@@ -0,0 +1,45 @@
+#ifndef STLPLUS_STRING_SEQUENCE\r
+#define STLPLUS_STRING_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
+\r
+namespace stlplus\r
+{\r
+\r
+  ////////////////////////////////////////////////////////////////////////////////\r
+  // any forward iterator sequence\r
+\r
+  template <typename I, typename S>\r
+  std::string sequence_to_string(I begin,\r
+                                 I end, \r
+                                 S to_string,\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
+  std::string pair_sequence_to_string(I begin,\r
+                                      I end,\r
+                                      S1 to_string_fn1,\r
+                                      S2 to_string_fn2,\r
+                                      const std::string& pair_separator,\r
+                                      const std::string& separator);\r
+\r
+  ////////////////////////////////////////////////////////////////////////////////\r
+\r
+} // end namespace stlplus\r
+\r
+#include "string_sequence.tpp"\r
+#endif\r
This page took 0.023168 seconds and 4 git commands to generate.