Skip to content
Snippets Groups Projects
Commit d41b894f authored by Timo Koch's avatar Timo Koch Committed by Christoph Grüninger
Browse files

Handle todos

parent bc56f95c
No related branches found
No related tags found
1 merge request!70Cleanup/fs269 takecareoftodos
...@@ -49,6 +49,7 @@ namespace Dumux { ...@@ -49,6 +49,7 @@ namespace Dumux {
* This class automatically keeps the meta file up to date and * This class automatically keeps the meta file up to date and
* simplifies writing datasets consisting of multiple files. (i.e. * simplifies writing datasets consisting of multiple files. (i.e.
* multiple time steps or grid refinements within a time step.) * multiple time steps or grid refinements within a time step.)
* \todo This class can most likely be replaced by Dune::VTKSequenceWriter
*/ */
template<class GridView, Dune::VTK::OutputType OutputValue = Dune::VTK::ascii > template<class GridView, Dune::VTK::OutputType OutputValue = Dune::VTK::ascii >
class VtkMultiWriter class VtkMultiWriter
...@@ -146,9 +147,6 @@ public: ...@@ -146,9 +147,6 @@ public:
return &(vfs->vf); return &(vfs->vf);
} }
// todo: remove these two functions as soon as we depend on a
// contemporary compilers which support default template
// arguments for function templates
template <class Scalar> template <class Scalar>
Dune::BlockVector<Dune::FieldVector<Scalar, 1> > *allocateManagedBuffer(int nEntities) Dune::BlockVector<Dune::FieldVector<Scalar, 1> > *allocateManagedBuffer(int nEntities)
{ return allocateManagedBuffer<Scalar, 1>(nEntities); } { return allocateManagedBuffer<Scalar, 1>(nEntities); }
...@@ -443,7 +441,7 @@ private: ...@@ -443,7 +441,7 @@ private:
} }
////////////////////////////// //////////////////////////////
// HACK: when ever we attach some data we need to copy the // Trick: when ever we attach some data we need to copy the
// vector field (that's because Dune::VTKWriter is not // vector field (that's because Dune::VTKWriter is not
// able to write fields one at a time and using // able to write fields one at a time and using
// VTKWriter::add*Data doesn't copy the data's // VTKWriter::add*Data doesn't copy the data's
...@@ -458,8 +456,6 @@ private: ...@@ -458,8 +456,6 @@ private:
// list and a derived template class which actually // list and a derived template class which actually
// knows the type of the vector field it must delete. // knows the type of the vector field it must delete.
/** \todo Please doc me! */
class ManagedObject_ class ManagedObject_
{ {
public: public:
...@@ -467,8 +463,6 @@ private: ...@@ -467,8 +463,6 @@ private:
{} {}
}; };
/** \todo Please doc me! */
template <class VF> template <class VF>
class ManagedVectorField_ : public ManagedObject_ class ManagedVectorField_ : public ManagedObject_
{ {
......
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