Skip to content
Snippets Groups Projects
Commit 3f6b2428 authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

Minor cahnges in DofIterator.

[[Imported from SVN: r755]]
parent d0c820a4
No related branches found
No related tags found
No related merge requests found
......@@ -300,7 +300,7 @@ namespace Dune {
DofType & operator *();
//! return dof read only
const DofType & read () const;
const DofType & operator * () const;
//! go next dof
MyType & operator++ ();
......@@ -308,17 +308,11 @@ namespace Dune {
//! go next dof
const MyType & operator++ () const;
//! go next i steps
MyType & operator++ (int i);
//! go next i steps
const MyType & operator++ (int i) const;
//! random access
DofType& operator[] (int i);
//! random access read only
const DofType& read (int i) const;
const DofType& operator [] (int i) const;
//! compare
bool operator == (const MyType & I ) const;
......
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