]> git.lyx.org Git - features.git/blobdiff - boost/boost/optional/optional_io.hpp
boost: add eol property
[features.git] / boost / boost / optional / optional_io.hpp
index 7c59737365dda9b936261ac2b683af30b40973ad..ef1ecaf3a066461dc4e887aa2775d3d99bee20fb 100644 (file)
@@ -1,84 +1,84 @@
-// Copyright (C) 2005, Fernando Luis Cacciola Carballal.\r
-//\r
-// Use, modification, and distribution is subject to the Boost Software\r
-// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at\r
-// http://www.boost.org/LICENSE_1_0.txt)\r
-//\r
-// See http://www.boost.org/lib/optional for documentation.\r
-//\r
-// You are welcome to contact the author at:\r
-//  fernando_cacciola@hotmail.com\r
-//\r
-#ifndef BOOST_OPTIONAL_OPTIONAL_IO_FLC_19NOV2002_HPP\r
-#define BOOST_OPTIONAL_OPTIONAL_IO_FLC_19NOV2002_HPP\r
-\r
-#if defined __GNUC__\r
-#  if (__GNUC__ == 2 && __GNUC_MINOR__ <= 97) \r
-#    define BOOST_OPTIONAL_NO_TEMPLATED_STREAMS\r
-#  endif\r
-#endif // __GNUC__\r
-\r
-#if defined BOOST_OPTIONAL_NO_TEMPLATED_STREAMS\r
-#  include <iostream>\r
-#else \r
-#  include <istream>\r
-#  include <ostream>\r
-#endif  \r
-\r
-\r
-#include "boost/optional/optional.hpp"\r
-#include "boost/utility/value_init.hpp"\r
-\r
-namespace boost\r
-{\r
-\r
-#if defined (BOOST_NO_TEMPLATED_STREAMS)\r
-template<class T>\r
-inline std::ostream& operator<<(std::ostream& out, optional<T> const& v)\r
-#else\r
-template<class CharType, class CharTrait, class T>\r
-inline\r
-std::basic_ostream<CharType, CharTrait>&\r
-operator<<(std::basic_ostream<CharType, CharTrait>& out, optional<T> const& v)\r
-#endif\r
-{\r
-  if ( out.good() )\r
-  {\r
-    if ( !v )\r
-         out << "--" ;\r
-    else out << ' ' << *v ;\r
-  }\r
-\r
-  return out;\r
-}\r
-\r
-#if defined (BOOST_NO_TEMPLATED_STREAMS)\r
-template<class T>\r
-inline std::istream& operator>>(std::istream& in, optional<T>& v)\r
-#else\r
-template<class CharType, class CharTrait, class T>\r
-inline\r
-std::basic_istream<CharType, CharTrait>&\r
-operator>>(std::basic_istream<CharType, CharTrait>& in, optional<T>& v)\r
-#endif\r
-{\r
-  if ( in.good() )\r
-  {\r
-    int d = in.get();\r
-    if ( d == ' ' )\r
-    {\r
-      T x ;\r
-      in >> x;\r
-      v = x ;\r
-    }\r
-    else\r
-      v = optional<T>() ;\r
-  }\r
-\r
-  return in;\r
-}\r
-\r
-} // namespace boost\r
-\r
-#endif\r
-\r
+// Copyright (C) 2005, Fernando Luis Cacciola Carballal.
+//
+// Use, modification, and distribution is subject to the Boost Software
+// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
+//
+// See http://www.boost.org/lib/optional for documentation.
+//
+// You are welcome to contact the author at:
+//  fernando_cacciola@hotmail.com
+//
+#ifndef BOOST_OPTIONAL_OPTIONAL_IO_FLC_19NOV2002_HPP
+#define BOOST_OPTIONAL_OPTIONAL_IO_FLC_19NOV2002_HPP
+
+#if defined __GNUC__
+#  if (__GNUC__ == 2 && __GNUC_MINOR__ <= 97) 
+#    define BOOST_OPTIONAL_NO_TEMPLATED_STREAMS
+#  endif
+#endif // __GNUC__
+
+#if defined BOOST_OPTIONAL_NO_TEMPLATED_STREAMS
+#  include <iostream>
+#else 
+#  include <istream>
+#  include <ostream>
+#endif  
+
+
+#include "boost/optional/optional.hpp"
+#include "boost/utility/value_init.hpp"
+
+namespace boost
+{
+
+#if defined (BOOST_NO_TEMPLATED_STREAMS)
+template<class T>
+inline std::ostream& operator<<(std::ostream& out, optional<T> const& v)
+#else
+template<class CharType, class CharTrait, class T>
+inline
+std::basic_ostream<CharType, CharTrait>&
+operator<<(std::basic_ostream<CharType, CharTrait>& out, optional<T> const& v)
+#endif
+{
+  if ( out.good() )
+  {
+    if ( !v )
+         out << "--" ;
+    else out << ' ' << *v ;
+  }
+
+  return out;
+}
+
+#if defined (BOOST_NO_TEMPLATED_STREAMS)
+template<class T>
+inline std::istream& operator>>(std::istream& in, optional<T>& v)
+#else
+template<class CharType, class CharTrait, class T>
+inline
+std::basic_istream<CharType, CharTrait>&
+operator>>(std::basic_istream<CharType, CharTrait>& in, optional<T>& v)
+#endif
+{
+  if ( in.good() )
+  {
+    int d = in.get();
+    if ( d == ' ' )
+    {
+      T x ;
+      in >> x;
+      v = x ;
+    }
+    else
+      v = optional<T>() ;
+  }
+
+  return in;
+}
+
+} // namespace boost
+
+#endif
+