1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #ifndef SRC_EXCHANGEAPI_EXCHANGEAPI_EXPORT_H_
22 #define SRC_EXCHANGEAPI_EXCHANGEAPI_EXPORT_H_
24 //--------------------------------------------------------------------------------------
25 #include "ExchangeAPI.h"
30 #include <ModelHighAPI_Interface.h>
31 #include <ModelHighAPI_Macro.h>
33 #include <ExchangePlugin_ExportFeature.h>
34 //--------------------------------------------------------------------------------------
35 class ModelHighAPI_Selection;
36 //--------------------------------------------------------------------------------------
39 /// \class ExchangeAPI_Export
40 /// \ingroup CPPHighAPI
41 /// \brief Interface for Export feature.
42 class ExchangeAPI_Export: public ModelHighAPI_Interface
45 /// Constructor without values.
47 explicit ExchangeAPI_Export(const std::shared_ptr<ModelAPI_Feature>& theFeature);
49 /// Constructor with values for XAO export.
51 explicit ExchangeAPI_Export(const std::shared_ptr<ModelAPI_Feature>& theFeature,
52 const std::string & theFilePath,
53 const std::string & theAuthor = std::string(),
54 const std::string & theGeometryName = std::string());
56 /// Constructor with values for export in other formats than XAO.
58 explicit ExchangeAPI_Export(const std::shared_ptr<ModelAPI_Feature>& theFeature,
59 const std::string & theFilePath,
60 const std::list<ModelHighAPI_Selection> & theSelectionList,
61 const std::string & theFileFormat = std::string());
65 virtual ~ExchangeAPI_Export();
67 INTERFACE_7(ExchangePlugin_ExportFeature::ID(),
68 exportType, ExchangePlugin_ExportFeature::EXPORT_TYPE_ID(),
69 ModelAPI_AttributeString, /** ExportType */,
70 filePath, ExchangePlugin_ExportFeature::FILE_PATH_ID(),
71 ModelAPI_AttributeString, /** file path */,
72 xaoFilePath, ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID(),
73 ModelAPI_AttributeString, /** xao_file_path */,
74 fileFormat, ExchangePlugin_ExportFeature::FILE_FORMAT_ID(),
75 ModelAPI_AttributeString, /** file format */,
76 selectionList, ExchangePlugin_ExportFeature::SELECTION_LIST_ID(),
77 ModelAPI_AttributeString, /** selection list */,
78 xaoAuthor, ExchangePlugin_ExportFeature::XAO_AUTHOR_ID(),
79 ModelAPI_AttributeString, /** xao author */,
80 xaoGeometryName, ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID(),
81 ModelAPI_AttributeString, /** xao geometry name */)
83 /// Dump wrapped feature
85 virtual void dump(ModelHighAPI_Dumper& theDumper) const;
88 /// Pointer on Export object
89 typedef std::shared_ptr<ExchangeAPI_Export> ExportPtr;
91 /**\ingroup CPPHighAPI
92 * \brief Export to file
95 ExportPtr exportToFile(const std::shared_ptr<ModelAPI_Document> & thePart,
96 const std::string & theFilePath,
97 const std::list<ModelHighAPI_Selection> & theSelectionList,
98 const std::string & theFileFormat = std::string());
100 /**\ingroup CPPHighAPI
104 ExportPtr exportToXAO(const std::shared_ptr<ModelAPI_Document> & thePart,
105 const std::string & theFilePath,
106 const std::string & theAuthor = std::string(),
107 const std::string & theGeometryName = std::string());
109 //--------------------------------------------------------------------------------------
110 //--------------------------------------------------------------------------------------
111 #endif /* SRC_EXCHANGEAPI_EXCHANGEAPI_EXPORT_H_ */