Default constructor.
| 116 | |
| 117 | /// Default constructor. |
| 118 | ModelPart::ModelPart(VariablesList::Pointer pVariablesList, Model& rOwnerModel) : ModelPart("Default", pVariablesList, rOwnerModel) { } |
| 119 | |
| 120 | /// Constructor with name |
| 121 | ModelPart::ModelPart(std::string const& NewName,VariablesList::Pointer pVariablesList, Model& rOwnerModel) : ModelPart(NewName, 1, pVariablesList, rOwnerModel) { } |