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

_______________________________________________
Mailing list: https://launchpad.net/~fenics
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~fenics
More help   : https://help.launchpad.net/ListHelp

Reply via email to