X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FBuildAPI%2FBuildAPI_Vertex.cpp;h=327a2d2905d2b856c9dd346db41f294612eb17e0;hb=6e421e939851e0de46554ae45a3ca0e1f67cd91d;hp=b1723c84e3141bcd69e63b42657525827dacdc27;hpb=d5009408b937be1a3436028eec3ef4a920e999a9;p=modules%2Fshaper.git diff --git a/src/BuildAPI/BuildAPI_Vertex.cpp b/src/BuildAPI/BuildAPI_Vertex.cpp index b1723c84e..327a2d290 100644 --- a/src/BuildAPI/BuildAPI_Vertex.cpp +++ b/src/BuildAPI/BuildAPI_Vertex.cpp @@ -1,11 +1,25 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> - -// File: BuildAPI_Vertex.cpp -// Created: 09 June 2016 -// Author: Dmitry Bobylev +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include "BuildAPI_Vertex.h" +#include #include //================================================================================================== @@ -46,3 +60,13 @@ VertexPtr addVertex(const std::shared_ptr& thePart, std::shared_ptr aFeature = thePart->addFeature(BuildAPI_Vertex::ID()); return VertexPtr(new BuildAPI_Vertex(aFeature, theBaseObjects)); } + +//================================================================================================== +void BuildAPI_Vertex::dump(ModelHighAPI_Dumper& theDumper) const +{ + FeaturePtr aBase = feature(); + std::string aPartName = theDumper.name(aBase->document()); + + theDumper << aBase << " = model.addVertex(" << aPartName << ", " + << aBase->selectionList(BuildPlugin_Vertex::BASE_OBJECTS_ID()) << ")" << std::endl; +}