X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FExchangePlugin%2FExchangePlugin_Tools.cpp;h=d369df2fcd8ff1cf50fa13de08fbcaa119d46fd5;hb=b625a28efae6fabb8606080db03a24d7fefe0215;hp=c4299c30e248f0bed5cc410e54853d33501addfe;hpb=5b6031b015602aa07f5a6fc668c13ac3faf7a8a9;p=modules%2Fshaper.git diff --git a/src/ExchangePlugin/ExchangePlugin_Tools.cpp b/src/ExchangePlugin/ExchangePlugin_Tools.cpp index c4299c30e..d369df2fc 100644 --- a/src/ExchangePlugin/ExchangePlugin_Tools.cpp +++ b/src/ExchangePlugin/ExchangePlugin_Tools.cpp @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: ExchangePlugin_Tools.cpp -// Created: May 15, 2015 -// Author: Sergey POKHODENKO +// 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 @@ -20,16 +33,16 @@ std::list ExchangePlugin_Tools::split(const std::string& theString, std::string ExchangePlugin_Tools::selectionType2xaoDimension(const std::string& theType) { - if (theType == "Vertices" || theType == "vertex") + if (theType == "Vertices" || theType == "vertex" || theType == "VERTEX") return "vertex"; - else if (theType == "Edges" || theType == "edge") + else if (theType == "Edges" || theType == "edge" || theType == "EDGE") return "edge"; - else if (theType == "Faces" || theType == "face") + else if (theType == "Faces" || theType == "face" || theType == "FACE") return "face"; - else if (theType == "Solids" || theType == "solid") + else if (theType == "Solids" || theType == "solid" || theType == "SOLID") return "solid"; - else if (theType == "Part" || theType == "part") - return "part"; + else if (theType == "Part" || theType == "part" || theType == "PART") + return "whole"; return std::string(); }