This commit is contained in:
fps 2013-09-17 11:16:23 +00:00
parent 390054003f
commit 7bead41d97
2 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ namespace XAO
* @param nbComponents the number of components.
* @param name the name of the field.
*/
DoubleField(const XAO::Dimension& dimension, const int& nbElements, const int& nbComponentsconst, const std::string& name);
DoubleField(const XAO::Dimension& dimension, const int& nbElements, const int& nbComponents, const std::string& name);
virtual const XAO::Type getType() { return XAO::DOUBLE; }

View File

@ -39,9 +39,9 @@ namespace XAO
* Constructor.
* @param dim the dimension of the group.
* @param nbElements the number of geometrical elements for the dimension in the geometry.
* @param the name of the group.
* @param name the name of the group.
*/
Group(const XAO::Dimension& dim, const int& nbelements, const std::string& name = std::string(""))
Group(const XAO::Dimension& dim, const int& nbElements, const std::string& name = std::string(""))
throw (XAO_Exception);
/**