← Back to team overview

fenics team mailing list archive

FEniCS documentation parsing templates

 

What information should the docstrings parser extract from
(dolfin/mesh/Vertex.h):

  /// A VertexFunction is a MeshFunction of topological dimension 0.

  template <class T> class VertexFunction : public MeshFunction<T>
  {
  public:

    VertexFunction(const Mesh& mesh) : MeshFunction<T>(mesh, 0) {}

  };

currently it extracts a class 'T>' which is obviously wrong.

Should it just disregard the template information and return a class
VertexFunction?

Kristian