Warning, /include/opencascade/TNaming_ShapesSet.lxx is written in an unsupported language. File is not indexed.
0001 // Created on: 1997-01-09
0002 // Created by: Yves FRICAUD
0003 // Copyright (c) 1997-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016
0017 #include <TopTools_MapOfShape.hxx>
0018
0019 //=======================================================================
0020 //function : TNaming_ShapesSet
0021 //purpose :
0022 //=======================================================================
0023
0024 inline TNaming_ShapesSet::TNaming_ShapesSet()
0025 {
0026 }
0027
0028
0029 //=======================================================================
0030 //function : Clear
0031 //purpose :
0032 //=======================================================================
0033
0034 inline void TNaming_ShapesSet::Clear()
0035 {
0036 myMap.Clear();
0037 }
0038
0039 //=======================================================================
0040 //function : Add
0041 //purpose :
0042 //=======================================================================
0043
0044 inline Standard_Boolean TNaming_ShapesSet::Add(const TopoDS_Shape& S)
0045 {
0046 return myMap.Add(S);
0047 }
0048
0049 //=======================================================================
0050 //function : Standard_Boolean
0051 //purpose :
0052 //=======================================================================
0053
0054 inline Standard_Boolean TNaming_ShapesSet::Contains(const TopoDS_Shape& S) const
0055 {
0056 return myMap.Contains(S);
0057 }
0058
0059 //=======================================================================
0060 //function : Standard_Boolean
0061 //purpose :
0062 //=======================================================================
0063
0064 inline Standard_Boolean TNaming_ShapesSet::Remove(const TopoDS_Shape& S)
0065 {
0066 return myMap.Remove(S);
0067 }
0068
0069 //=======================================================================
0070 //function : IsEmpty
0071 //purpose :
0072 //=======================================================================
0073
0074 inline Standard_Boolean TNaming_ShapesSet::IsEmpty() const
0075 {
0076 return myMap.IsEmpty();
0077 }
0078
0079 //=======================================================================
0080 //function : NbShapes
0081 //purpose :
0082 //=======================================================================
0083
0084 inline Standard_Integer TNaming_ShapesSet::NbShapes() const
0085 {
0086 return myMap.Extent();
0087 }
0088
0089
0090 //=======================================================================
0091 //function : ChangeMap
0092 //purpose :
0093 //=======================================================================
0094
0095 inline TopTools_MapOfShape& TNaming_ShapesSet::ChangeMap()
0096 {
0097 return myMap;
0098 }
0099
0100 //=======================================================================
0101 //function : Map
0102 //purpose :
0103 //=======================================================================
0104
0105 inline const TopTools_MapOfShape& TNaming_ShapesSet::Map() const
0106 {
0107 return myMap;
0108 }