]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/string_smart_ptr.tpp
cleanup stlplus files
[chaz/yoink] / src / stlplus / strings / string_smart_ptr.tpp
index 7953fbf3f7587f4efca460cec2293f376c367166..994b363dd07912fdfef7b61f2ba936f7dc29b4a6 100644 (file)
@@ -1,44 +1,44 @@
-////////////////////////////////////////////////////////////////////////////////\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
-////////////////////////////////////////////////////////////////////////////////\r
-\r
-namespace stlplus\r
-{\r
-\r
-  template<typename T, typename S>\r
-  std::string smart_ptr_to_string(const smart_ptr<T>& value,\r
-                                  S to_string_fn,\r
-                                  const std::string& null_string,\r
-                                  const std::string& prefix,\r
-                                  const std::string& suffix)\r
-  {\r
-    return value ? (prefix + to_string_fn(*value) + suffix) : null_string;\r
-  }\r
-\r
-  template<typename T, typename S>\r
-  std::string smart_ptr_clone_to_string(const smart_ptr_clone<T>& value,\r
-                                        S to_string_fn,\r
-                                        const std::string& null_string,\r
-                                        const std::string& prefix,\r
-                                        const std::string& suffix)\r
-  {\r
-    return value ? (prefix + to_string_fn(*value) + suffix) : null_string;\r
-  }\r
-\r
-  template<typename T, typename S>\r
-  std::string smart_ptr_nocopy_to_string(const smart_ptr_nocopy<T>& value,\r
-                                         S to_string_fn,\r
-                                         const std::string& null_string,\r
-                                         const std::string& prefix,\r
-                                         const std::string& suffix)\r
-  {\r
-    return value ? (prefix + to_string_fn(*value) + suffix) : null_string;\r
-  }\r
-\r
-} // end namespace stlplus\r
-\r
+////////////////////////////////////////////////////////////////////////////////
+
+//   Author:    Andy Rushton
+//   Copyright: (c) Southampton University 1999-2004
+//              (c) Andy Rushton           2004-2009
+//   License:   BSD License, see ../docs/license.html
+
+////////////////////////////////////////////////////////////////////////////////
+
+namespace stlplus
+{
+
+  template<typename T, typename S>
+  std::string smart_ptr_to_string(const smart_ptr<T>& value,
+                                  S to_string_fn,
+                                  const std::string& null_string,
+                                  const std::string& prefix,
+                                  const std::string& suffix)
+  {
+    return value ? (prefix + to_string_fn(*value) + suffix) : null_string;
+  }
+
+  template<typename T, typename S>
+  std::string smart_ptr_clone_to_string(const smart_ptr_clone<T>& value,
+                                        S to_string_fn,
+                                        const std::string& null_string,
+                                        const std::string& prefix,
+                                        const std::string& suffix)
+  {
+    return value ? (prefix + to_string_fn(*value) + suffix) : null_string;
+  }
+
+  template<typename T, typename S>
+  std::string smart_ptr_nocopy_to_string(const smart_ptr_nocopy<T>& value,
+                                         S to_string_fn,
+                                         const std::string& null_string,
+                                         const std::string& prefix,
+                                         const std::string& suffix)
+  {
+    return value ? (prefix + to_string_fn(*value) + suffix) : null_string;
+  }
+
+} // end namespace stlplus
+
This page took 0.020158 seconds and 4 git commands to generate.