fenics team mailing list archive
-
fenics team
-
Mailing list archive
-
Message #01283
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