Skip to content
Snippets Groups Projects
Commit 441954b9 authored by Martin Nolte's avatar Martin Nolte
Browse files

added operator>> for FieldVector

[[Imported from SVN: r5223]]
parent 3bed4c90
No related branches found
No related tags found
No related merge requests found
......@@ -683,7 +683,14 @@ namespace Dune {
K p[(SIZE > 0) ? SIZE : 1];
};
//! Send vector to output stream
/** \brief Write a FieldVector to an output stream
* \relates FieldVector
*
* \param[in] s std :: ostream to write to
* \param[in] v FieldVector to write
*
* \returns the output stream (s)
*/
template<typename K, int n>
std::ostream& operator<< (std::ostream& s, const FieldVector<K,n>& v)
{
......@@ -692,6 +699,29 @@ namespace Dune {
return s;
}
/** \brief Read a FieldVector from an input stream
* \relates FieldVector
*
* \note This operator is STL compilant, i.e., the content of v is only
* changed if the read operation is successful.
*
* \param[in] in std :: istream to read from
* \param[out] v FieldVector to be read
*
* \returns the input stream (in)
*/
template< class K, int SIZE >
inline std :: istream &operator>> ( std :: istream &in,
FieldVector< K, SIZE > &v )
{
FieldVector< K, SIZE > w;
for( typename FieldVector< K, SIZE > :: size_type i = 0; i < SIZE; ++i )
in >> w[ i ];
if( in )
v = w;
return in;
}
// forward declarations
template<class K, int n, int m> class FieldMatrix;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment