X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FExchangePlugin%2FExchangePlugin_Tools.h;h=35c177611671ba7c0c6547227c81818c505996d0;hb=ea593bc59e7e9461f6c4e2afd3f24d621edb1011;hp=b855207048479f667fe0a5ccbae0ad2eddb0c1ed;hpb=f565325d5c15b590237ae70c1ac6e57b448579ad;p=modules%2Fshaper.git diff --git a/src/ExchangePlugin/ExchangePlugin_Tools.h b/src/ExchangePlugin/ExchangePlugin_Tools.h index b85520704..35c177611 100644 --- a/src/ExchangePlugin/ExchangePlugin_Tools.h +++ b/src/ExchangePlugin/ExchangePlugin_Tools.h @@ -1,21 +1,34 @@ -/* - * ExchangePlugin_Tools.h - * - * Created on: May 15, 2015 - * Author: spo - */ +// 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 +// #ifndef EXCHANGEPLUGIN_TOOLS_H_ #define EXCHANGEPLUGIN_TOOLS_H_ #include +#include #include #include -/**\class ExchangePlugin_Tools - * \ingroup Plugins - * \brief Internal tools for the plugin. +/** + * \class ExchangePlugin_Tools + * \brief Internal tools for the ExchangePlugin. */ class EXCHANGEPLUGIN_EXPORT ExchangePlugin_Tools { public: @@ -23,6 +36,16 @@ public: static std::list split(const std::string& theString, char theDelimiter); + /// Converts string representation of selection type to XAO dimension. + static std::string selectionType2xaoDimension(const std::string& theString); + + /// Converts string representation of XAO dimension to selection type. + static std::string xaoDimension2selectionType(const std::string& theDimension); + + /// Converts representation of values type to XAO type. + static std::string valuesType2xaoType(const ModelAPI_AttributeTables::ValueType& theType); + /// Converts representation of values type to XAO type. + static ModelAPI_AttributeTables::ValueType xaoType2valuesType(std::string theType); }; #endif /* EXCHANGEPLUGIN_TOOLS_H_ */