1 // Copyright (C) 2014-2019 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 email : webmaster.salome@opencascade.com
20 #ifndef SRC_MODELHIGHAPI_MODELHIGHAPI_FOLDER_H_
21 #define SRC_MODELHIGHAPI_MODELHIGHAPI_FOLDER_H_
23 //--------------------------------------------------------------------------------------
24 #include <ModelHighAPI_Interface.h>
26 #include <ModelAPI_Folder.h>
29 //--------------------------------------------------------------------------------------
30 class ModelAPI_AttributeReference;
31 class ModelAPI_Document;
32 class ModelHighAPI_Reference;
33 //--------------------------------------------------------------------------------------
34 /**\class ModelHighAPI_Folder
36 * \brief Class for filling ModelAPI_Folder
38 class ModelHighAPI_Folder : public ModelHighAPI_Interface
41 /// Constructor for a folder
43 explicit ModelHighAPI_Folder(const std::shared_ptr<ModelAPI_Folder>& theFolder);
45 MODELHIGHAPI_EXPORT virtual ~ModelHighAPI_Folder();
47 static std::string ID() { return ModelAPI_Folder::ID(); }
48 virtual std::string getID() { return ID(); }
50 /// First feature reference
51 std::shared_ptr<ModelAPI_AttributeReference> firstFeature() const
52 { return myFirstFeature; }
54 /// Last feature reference
55 std::shared_ptr<ModelAPI_AttributeReference> lastFeature() const
56 { return myLastFeature; }
58 /// Shortcut for data()->setName()
60 void setName(const std::string& theName);
62 /// Shortcut for data()->name()
64 std::string name() const;
66 /// Dump wrapped feature
67 MODELHIGHAPI_EXPORT virtual void dump(ModelHighAPI_Dumper& theDumper) const;
73 std::shared_ptr<ModelAPI_Folder> myFolder;
75 std::shared_ptr<ModelAPI_AttributeReference> myFirstFeature;
76 std::shared_ptr<ModelAPI_AttributeReference> myLastFeature;
79 //--------------------------------------------------------------------------------------
80 /**\ingroup CPPHighAPI
81 * \brief Create empty Folder feature
84 std::shared_ptr<ModelHighAPI_Folder> addFolder(const std::shared_ptr<ModelAPI_Document>& theDoc);
86 /**\ingroup CPPHighAPI
87 * \brief Create Folder feature
90 std::shared_ptr<ModelHighAPI_Folder> addFolder(const std::shared_ptr<ModelAPI_Document>& theDoc,
91 const ModelHighAPI_Reference& theFirstFeature,
92 const ModelHighAPI_Reference& theLastFeature);
93 //--------------------------------------------------------------------------------------
94 #endif /* SRC_MODELHIGHAPI_MODELHIGHAPI_FOLDER_H_ */