From b6be55e224c8f4e7ebd17f83b8e18051389d87d8 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Tue, 22 Nov 2016 17:41:21 +0100 Subject: [PATCH] [MeL] Add missing parameter documentation. --- MeshLib/Mesh.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/MeshLib/Mesh.h b/MeshLib/Mesh.h index 97cda058645..dbb657948e5 100644 --- a/MeshLib/Mesh.h +++ b/MeshLib/Mesh.h @@ -48,11 +48,15 @@ class Mesh : BaseLib::Counter<Mesh> public: /// Constructor using a mesh name and an array of nodes and elements /// @param name Mesh name. - /// @param nodes A vector of mesh nodes. In case nonlinear nodes are involved, one should - /// put them after line ones in the vector and set "n_base_nodes" argument. + /// @param nodes A vector of mesh nodes. In case nonlinear nodes are + /// involved, one should put them after line ones in + /// the vector and set "n_base_nodes" argument. /// @param elements An array of mesh elements. - /// @param n_base_nodes The number of base nodes. This is an optional parameter for nonlinear case. - /// If the parameter is set to zero, we consider there are no nonlinear nodes. + /// @param properties Mesh properties. + /// @param n_base_nodes The number of base nodes. This is an optional + /// parameter for nonlinear case. If the parameter is + /// set to zero, we consider there are no nonlinear + /// nodes. Mesh(const std::string &name, const std::vector<Node*> &nodes, const std::vector<Element*> &elements, -- GitLab