1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-06 10:36:12 +03:00
occt/src/StepData/StepData_ESDescr.hxx
ski 997e128f88 0024788: Foundation Classes - remove Dico_Dictionary
Class Dico_Dictionary was replaced by NCollection_DataMap/NCollection_IndexedDataMap classes.
Changed argument name in template class NCollection_Datamap to eliminate redefinitions of static members in dependent code.
2016-11-08 15:15:22 +03:00

135 lines
4.3 KiB
C++

// Created on: 1997-05-09
// Created by: Christian CAILLET
// Copyright (c) 1997-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#ifndef _StepData_ESDescr_HeaderFile
#define _StepData_ESDescr_HeaderFile
#include <Standard.hxx>
#include <Standard_Type.hxx>
#include <TCollection_AsciiString.hxx>
#include <TColStd_HArray1OfTransient.hxx>
#include <StepData_EDescr.hxx>
#include <Standard_CString.hxx>
#include <Standard_Integer.hxx>
#include <Standard_Boolean.hxx>
#include <NCollection_DataMap.hxx>
#include <TCollection_AsciiString.hxx>
#include <Standard_Transient.hxx>
class StepData_PDescr;
class StepData_Described;
class StepData_ESDescr;
DEFINE_STANDARD_HANDLE(StepData_ESDescr, StepData_EDescr)
//! This class is intended to describe the authorized form for a
//! Simple (not Plex) Entity, as a list of fields
class StepData_ESDescr : public StepData_EDescr
{
public:
//! Creates an ESDescr with a type name
Standard_EXPORT StepData_ESDescr(const Standard_CString name);
//! Sets a new count of fields
//! Each one is described by a PDescr
Standard_EXPORT void SetNbFields (const Standard_Integer nb);
//! Sets a PDescr to describe a field
//! A Field is designated by its rank and name
Standard_EXPORT void SetField (const Standard_Integer num, const Standard_CString name, const Handle(StepData_PDescr)& descr);
//! Sets an ESDescr as based on another one
//! Hence, if there are inherited fields, the derived ESDescr
//! cumulates all them, while the base just records its own ones
Standard_EXPORT void SetBase (const Handle(StepData_ESDescr)& base);
//! Sets an ESDescr as "super-type". Applies an a base (non
//! derived) ESDescr
Standard_EXPORT void SetSuper (const Handle(StepData_ESDescr)& super);
//! Returns the type name given at creation time
Standard_EXPORT Standard_CString TypeName() const;
//! Returns the type name as an AsciiString
Standard_EXPORT const TCollection_AsciiString& StepType() const;
//! Returns the basic ESDescr, null if <me> is not derived
Standard_EXPORT Handle(StepData_ESDescr) Base() const;
//! Returns the super-type ESDescr, null if <me> is root
Standard_EXPORT Handle(StepData_ESDescr) Super() const;
//! Tells if <me> is sub-type of (or equal to) another one
Standard_EXPORT Standard_Boolean IsSub (const Handle(StepData_ESDescr)& other) const;
//! Returns the count of fields
Standard_EXPORT Standard_Integer NbFields() const;
//! Returns the rank of a field from its name. 0 if unknown
Standard_EXPORT Standard_Integer Rank (const Standard_CString name) const;
//! Returns the name of a field from its rank. empty if outofrange
Standard_EXPORT Standard_CString Name (const Standard_Integer num) const;
//! Returns the PDescr for the field <num> (or Null)
Standard_EXPORT Handle(StepData_PDescr) Field (const Standard_Integer num) const;
//! Returns the PDescr for the field named <name> (or Null)
Standard_EXPORT Handle(StepData_PDescr) NamedField (const Standard_CString name) const;
//! Tells if a ESDescr matches a step type : exact or super type
Standard_EXPORT Standard_Boolean Matches (const Standard_CString steptype) const Standard_OVERRIDE;
//! Returns False
Standard_EXPORT Standard_Boolean IsComplex() const Standard_OVERRIDE;
//! Creates a described entity (i.e. a simple one)
Standard_EXPORT Handle(StepData_Described) NewEntity() const Standard_OVERRIDE;
DEFINE_STANDARD_RTTIEXT(StepData_ESDescr,StepData_EDescr)
protected:
private:
TCollection_AsciiString thenom;
Handle(TColStd_HArray1OfTransient) thedescr;
NCollection_DataMap<TCollection_AsciiString, Standard_Integer> thenames;
Handle(StepData_ESDescr) thebase;
Handle(StepData_ESDescr) thesuper;
};
#endif // _StepData_ESDescr_HeaderFile