library of assembled shared sources

http://lass.cocamware.com

extended_io.h

Go to the documentation of this file.
00001 /** @file
00002  *  @author Bram de Greve (bramz@users.sourceforge.net)
00003  *  @author Tom De Muer (tomdemuer@users.sourceforge.net)
00004  *
00005  *  *** BEGIN LICENSE INFORMATION ***
00006  *  
00007  *  The contents of this file are subject to the Common Public Attribution License 
00008  *  Version 1.0 (the "License"); you may not use this file except in compliance with 
00009  *  the License. You may obtain a copy of the License at 
00010  *  http://lass.sourceforge.net/cpal-license. The License is based on the 
00011  *  Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover 
00012  *  use of software over a computer network and provide for limited attribution for 
00013  *  the Original Developer. In addition, Exhibit A has been modified to be consistent 
00014  *  with Exhibit B.
00015  *  
00016  *  Software distributed under the License is distributed on an "AS IS" basis, WITHOUT 
00017  *  WARRANTY OF ANY KIND, either express or implied. See the License for the specific 
00018  *  language governing rights and limitations under the License.
00019  *  
00020  *  The Original Code is LASS - Library of Assembled Shared Sources.
00021  *  
00022  *  The Initial Developer of the Original Code is Bram de Greve and Tom De Muer.
00023  *  The Original Developer is the Initial Developer.
00024  *  
00025  *  All portions of the code written by the Initial Developer are:
00026  *  Copyright (C) 2004-2007 the Initial Developer.
00027  *  All Rights Reserved.
00028  *  
00029  *  Contributor(s):
00030  *
00031  *  Alternatively, the contents of this file may be used under the terms of the 
00032  *  GNU General Public License Version 2 or later (the GPL), in which case the 
00033  *  provisions of GPL are applicable instead of those above.  If you wish to allow use
00034  *  of your version of this file only under the terms of the GPL and not to allow 
00035  *  others to use your version of this file under the CPAL, indicate your decision by 
00036  *  deleting the provisions above and replace them with the notice and other 
00037  *  provisions required by the GPL License. If you do not delete the provisions above,
00038  *  a recipient may use your version of this file under either the CPAL or the GPL.
00039  *  
00040  *  *** END LICENSE INFORMATION ***
00041  */
00042 
00043 
00044 
00045 /** @defgroup extended_io
00046  *  @brief extra insertors and extractors.
00047  *  @author Bram de Greve [BdG]
00048  *
00049  *  ExtendedIo groups additional stream operators for @c std::pair and standard containers like
00050  *  @c std::vector, @c std::list, ...  By including this header, it will possible to output
00051  *  these types to a stream, just like a regular float.
00052  *
00053  *  Currently, the containers only have output operators, only std::pair has both the output
00054  *  and input operator.  This will probably change in the future when there's a need for it.
00055  *
00056  *  The supported standard containers are @c std::vector, @c std::list, @c std::deque,
00057  *  @c std::map, @c std::multimap, @c std::set, @c std::multiset.
00058  *
00059  *  STLport specific: in case @c std::slist is detected as included, it is supported as well.
00060  *
00061  *  @code
00062  *  std::pair<int, std::string> a(5, "hello");
00063  *  std::cout << a; // (5, hello)
00064  *  std::cin >> a;
00065  *
00066  *  std::vector<int> b;
00067  *  b.push_back(1);
00068  *  b.push_back(2);
00069  *  b.push_back(3);
00070  *  std::cout << b; // [1, 2, 3]
00071  *
00072  *  std::map<std::string, int> c;
00073  *  c["foo"] = 1;
00074  *  c["bar"] = 2;
00075  *  c["spam"] = 3;
00076  *  c << map; // {bar: 2, foo: 1, spam: 3}
00077  *
00078  *  std::set<std::string> d;
00079  *  d.insert("foo");
00080  *  d.insert("bar");
00081  *  d.insert("spam");
00082  *  stream << d; // {bar, foo, spam}
00083  *  @endcode
00084  *
00085  *  @note we need to inject all this stuff in the std namespace for the look up thingies to work.
00086  */
00087 
00088 #ifndef LASS_GUARDIAN_OF_INCLUSION_STDE_EXTENDED_IO_H
00089 #define LASS_GUARDIAN_OF_INCLUSION_STDE_EXTENDED_IO_H
00090 
00091 #include "stde_common.h"
00092 
00093 namespace std
00094 {
00095 
00096 // output
00097 
00098 template <typename T1, typename T2, typename Char, typename Traits>
00099 std::basic_ostream<Char, Traits>&
00100 operator<<(std::basic_ostream<Char, Traits>& stream, const std::pair<T1, T2>& x);
00101 
00102 template <typename T, typename Alloc, typename Char, typename Traits>
00103 std::basic_ostream<Char, Traits>&
00104 operator<<(std::basic_ostream<Char, Traits>& stream, const std::vector<T, Alloc>& x);
00105 
00106 template <typename T, typename Alloc, typename Char, typename Traits>
00107 std::basic_ostream<Char, Traits>&
00108 operator<<(std::basic_ostream<Char, Traits>& stream, const std::list<T, Alloc>& x);
00109 
00110 template <typename T, typename Alloc, typename Char, typename Traits>
00111 std::basic_ostream<Char, Traits>&
00112 operator<<(std::basic_ostream<Char, Traits>& stream, const std::deque<T, Alloc>& x);
00113 
00114 template <typename Key, typename Data, typename Comp, typename Alloc, typename Char, typename Traits>
00115 std::basic_ostream<Char, Traits>&
00116 operator<<(std::basic_ostream<Char, Traits>& stream, const std::map<Key, Data, Comp, Alloc>& x);
00117 
00118 template <typename Key, typename Data, typename Comp, typename Alloc, typename Char, typename Traits>
00119 std::basic_ostream<Char, Traits>&
00120 operator<<(std::basic_ostream<Char, Traits>& stream, const std::multimap<Key, Data, Comp, Alloc>& x);
00121 
00122 template <typename Key, typename Comp, typename Alloc, typename Char, typename Traits>
00123 std::basic_ostream<Char, Traits>&
00124 operator<<(std::basic_ostream<Char, Traits>& stream, const std::set<Key, Comp, Alloc>& x);
00125 
00126 template <typename Key, typename Comp, typename Alloc, typename Char, typename Traits>
00127 std::basic_ostream<Char, Traits>&
00128 operator<<(std::basic_ostream<Char, Traits>& stream, const std::multiset<Key, Comp, Alloc>& x);
00129 
00130 
00131 
00132 // input
00133 /*
00134 template <typename T1, typename T2, typename Char, typename Traits>
00135 std::basic_istream<Char, Traits>&
00136 operator>>(std::basic_istream<Char, Traits>& stream, std::pair<T1, T2>& x);
00137 
00138 template <typename T, typename Alloc, typename Char, typename Traits>
00139 std::basic_istream<Char, Traits>&
00140 operator>>(std::basic_istream<Char, Traits>& stream, std::vector<T, Alloc>& x);
00141 
00142 template <typename T, typename Alloc, typename Char, typename Traits>
00143 std::basic_istream<Char, Traits>&
00144 operator>>(std::basic_istream<Char, Traits>& stream, std::list<T, Alloc>& x);
00145 
00146 template <typename T, typename Alloc, typename Char, typename Traits>
00147 std::basic_istream<Char, Traits>&
00148 operator>>(std::basic_istream<Char, Traits>& stream, std::deque<T, Alloc>& x);
00149 */
00150 }
00151 
00152 #include "extended_io.inl"
00153 
00154 #endif
00155 
00156 // EOF

Generated on Mon Nov 10 14:20:04 2008 for Library of Assembled Shared Sources by doxygen 1.5.7.1
SourceForge.net Logo