X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FExchangeAPI%2FExchangeAPI_Import.h;h=57793c725c106343ab44a5ac76a2877248be9b93;hb=33d5d1789bc484464da573419576359e8cce4657;hp=015b374f39803d697851d154d83c6096528755d6;hpb=16167ea683e05d4affb498377261bda39b61e9cc;p=modules%2Fshaper.git diff --git a/src/ExchangeAPI/ExchangeAPI_Import.h b/src/ExchangeAPI/ExchangeAPI_Import.h index 015b374f3..57793c725 100644 --- a/src/ExchangeAPI/ExchangeAPI_Import.h +++ b/src/ExchangeAPI/ExchangeAPI_Import.h @@ -1,8 +1,21 @@ -// Name : ExchangeAPI_Import.h -// Purpose: +// 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 // -// History: -// 07/06/16 - Sergey POKHODENKO - Creation of the file #ifndef SRC_EXCHANGEAPI_EXCHANGEAPI_IMPORT_H_ #define SRC_EXCHANGEAPI_EXCHANGEAPI_IMPORT_H_ @@ -16,6 +29,8 @@ #include #include +#include +#include //-------------------------------------------------------------------------------------- /**\class ExchangeAPI_Import * \ingroup CPPHighAPI @@ -36,12 +51,17 @@ public: virtual ~ExchangeAPI_Import(); INTERFACE_1(ExchangePlugin_ImportFeature::ID(), - filePath, ExchangePlugin_ImportFeature::FILE_PATH_ID(), ModelAPI_AttributeString, /** File path */ + filePath, ExchangePlugin_ImportFeature::FILE_PATH_ID(), + ModelAPI_AttributeString, /** File path */ ) /// Set point values EXCHANGEAPI_EXPORT void setFilePath(const std::string & theFilePath); + + /// Dump wrapped feature + EXCHANGEAPI_EXPORT + virtual void dump(ModelHighAPI_Dumper& theDumper) const; }; //! Pointer on Import object @@ -54,6 +74,14 @@ EXCHANGEAPI_EXPORT ImportPtr addImport(const std::shared_ptr & thePart, const std::string & theFilePath); +/** \ingroup CPPHighAPI + * \brief Import features from the file to the document after the current feature (or to the end). + */ +EXCHANGEAPI_EXPORT void importPart( + const std::shared_ptr & thePart, + const std::string & theFilePath, + const ModelHighAPI_Reference & theAfterThis = ModelHighAPI_Reference()); + //-------------------------------------------------------------------------------------- //-------------------------------------------------------------------------------------- #endif /* SRC_EXCHANGEAPI_EXCHANGEAPI_IMPORT_H_ */