Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:05:06

0001 // Created on: 1997-05-09
0002 // Created by: Christian CAILLET
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 #ifndef _StepData_Simple_HeaderFile
0018 #define _StepData_Simple_HeaderFile
0019 
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022 
0023 #include <StepData_FieldListN.hxx>
0024 #include <StepData_Described.hxx>
0025 #include <Standard_CString.hxx>
0026 #include <Standard_Integer.hxx>
0027 class StepData_ESDescr;
0028 class StepData_Field;
0029 class Interface_Check;
0030 class Interface_EntityIterator;
0031 
0032 
0033 class StepData_Simple;
0034 DEFINE_STANDARD_HANDLE(StepData_Simple, StepData_Described)
0035 
0036 //! A Simple Entity is defined by a type (which can heve super
0037 //! types) and a list of parameters
0038 class StepData_Simple : public StepData_Described
0039 {
0040 
0041 public:
0042 
0043   
0044   //! Creates a Simple Entity
0045   Standard_EXPORT StepData_Simple(const Handle(StepData_ESDescr)& descr);
0046   
0047   //! Returns description, as for simple
0048   Standard_EXPORT Handle(StepData_ESDescr) ESDescr() const;
0049   
0050   //! Returns the recorded StepType (TypeName of its ESDescr)
0051   Standard_EXPORT Standard_CString StepType() const;
0052   
0053   //! Returns False
0054   Standard_EXPORT Standard_Boolean IsComplex() const Standard_OVERRIDE;
0055   
0056   //! Tells if a step type is matched by <me>
0057   //! For a Simple Entity : own type or super type
0058   //! For a Complex Entity : one of the members
0059   Standard_EXPORT Standard_Boolean Matches (const Standard_CString steptype) const Standard_OVERRIDE;
0060   
0061   //! Returns a Simple Entity which matches with a Type in <me> :
0062   //! For a Simple Entity : me if it matches, else a null handle
0063   //! For a Complex Entity : the member which matches, else null
0064   Standard_EXPORT Handle(StepData_Simple) As (const Standard_CString steptype) const Standard_OVERRIDE;
0065   
0066   //! Tells if a Field brings a given name
0067   Standard_EXPORT Standard_Boolean HasField (const Standard_CString name) const Standard_OVERRIDE;
0068   
0069   //! Returns a Field from its name; read-only
0070   Standard_EXPORT const StepData_Field& Field (const Standard_CString name) const Standard_OVERRIDE;
0071   
0072   //! Returns a Field from its name; read or write
0073   Standard_EXPORT StepData_Field& CField (const Standard_CString name) Standard_OVERRIDE;
0074   
0075   //! Returns the count of fields
0076   Standard_EXPORT Standard_Integer NbFields() const;
0077   
0078   //! Returns a field from its rank, for read-only use
0079   Standard_EXPORT const StepData_Field& FieldNum (const Standard_Integer num) const;
0080   
0081   //! Returns a field from its rank, in order to modify it
0082   Standard_EXPORT StepData_Field& CFieldNum (const Standard_Integer num);
0083   
0084   //! Returns the entire field list, read-only
0085   Standard_EXPORT const StepData_FieldListN& Fields() const;
0086   
0087   //! Returns the entire field list, read or write
0088   Standard_EXPORT StepData_FieldListN& CFields();
0089   
0090   //! Fills a Check by using its Description
0091   Standard_EXPORT void Check (Handle(Interface_Check)& ach) const Standard_OVERRIDE;
0092   
0093   //! Fills an EntityIterator with entities shared by <me>
0094   Standard_EXPORT void Shared (Interface_EntityIterator& list) const Standard_OVERRIDE;
0095 
0096 
0097 
0098 
0099   DEFINE_STANDARD_RTTIEXT(StepData_Simple,StepData_Described)
0100 
0101 protected:
0102 
0103 
0104 
0105 
0106 private:
0107 
0108 
0109   StepData_FieldListN thefields;
0110 
0111 
0112 };
0113 
0114 
0115 
0116 
0117 
0118 
0119 
0120 #endif // _StepData_Simple_HeaderFile