mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-30 13:05:50 +03:00
130 lines
4.4 KiB
C++
130 lines
4.4 KiB
C++
// Created on: 1993-01-09
|
|
// Created by: CKY / Contract Toubro-Larsen (Anand NATRAJAN)
|
|
// Copyright (c) 1993-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 _IGESDefs_GenericData_HeaderFile
|
|
#define _IGESDefs_GenericData_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <Standard_Integer.hxx>
|
|
#include <TColStd_HArray1OfInteger.hxx>
|
|
#include <TColStd_HArray1OfTransient.hxx>
|
|
#include <IGESData_IGESEntity.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
class TCollection_HAsciiString;
|
|
class Standard_DimensionMismatch;
|
|
class Standard_OutOfRange;
|
|
class Standard_NullObject;
|
|
class Standard_Transient;
|
|
class IGESData_IGESEntity;
|
|
|
|
|
|
class IGESDefs_GenericData;
|
|
DEFINE_STANDARD_HANDLE(IGESDefs_GenericData, IGESData_IGESEntity)
|
|
|
|
//! defines IGES Generic Data, Type <406> Form <27>
|
|
//! in package IGESDefs
|
|
//! Used to communicate information defined by the system
|
|
//! operator while creating the model. The information is
|
|
//! system specific and does not map into one of the
|
|
//! predefined properties or associativities. Properties
|
|
//! and property values can be defined by multiple
|
|
//! instances of this property.
|
|
class IGESDefs_GenericData : public IGESData_IGESEntity
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
Standard_EXPORT IGESDefs_GenericData();
|
|
|
|
//! This method is used to set the fields of the class
|
|
//! GenericData
|
|
//! - nbPropVal : Number of property values
|
|
//! - aName : Property Name
|
|
//! - allTypes : Property Types
|
|
//! - allValues : Property Values
|
|
Standard_EXPORT void Init (const Standard_Integer nbPropVal, const Handle(TCollection_HAsciiString)& aName, const Handle(TColStd_HArray1OfInteger)& allTypes, const Handle(TColStd_HArray1OfTransient)& allValues);
|
|
|
|
//! returns the number of property values
|
|
Standard_EXPORT Standard_Integer NbPropertyValues() const;
|
|
|
|
//! returns property name
|
|
Standard_EXPORT Handle(TCollection_HAsciiString) Name() const;
|
|
|
|
//! returns the number of TYPE/VALUE pairs
|
|
Standard_EXPORT Standard_Integer NbTypeValuePairs() const;
|
|
|
|
//! returns the Index'th property value data type
|
|
//! raises exception if Index <= 0 or Index > NbTypeValuePairs()
|
|
Standard_EXPORT Standard_Integer Type (const Standard_Integer Index) const;
|
|
|
|
//! HArray1OfInteger (length 1), HArray1OfReal (length 1) for
|
|
//! Integer, Real, Boolean (= Integer 0/1),
|
|
//! HAsciiString for String (the value itself),
|
|
//! IGESEntity for Entity (the value itself)
|
|
Standard_EXPORT Handle(Standard_Transient) Value (const Standard_Integer Index) const;
|
|
|
|
//! Returns Attribute Value <AttrNum, rank ValueNum> as an Integer
|
|
//! Error if Index out of Range, or not an Integer
|
|
Standard_EXPORT Standard_Integer ValueAsInteger (const Standard_Integer ValueNum) const;
|
|
|
|
//! Returns Attribute Value <AttrNum, rank ValueNum> as a Real
|
|
//! Error if Index out of Range, or not a Real
|
|
Standard_EXPORT Standard_Real ValueAsReal (const Standard_Integer ValueNum) const;
|
|
|
|
//! Returns Attribute Value <AttrNum, rank ValueNum> as an Integer
|
|
Standard_EXPORT Handle(TCollection_HAsciiString) ValueAsString (const Standard_Integer ValueNum) const;
|
|
|
|
//! Returns Attribute Value <AttrNum, rank ValueNum> as an Entity
|
|
//! Error if Index out of Range, or not a Entity
|
|
Standard_EXPORT Handle(IGESData_IGESEntity) ValueAsEntity (const Standard_Integer ValueNum) const;
|
|
|
|
//! Returns Attribute Value <AttrNum, rank ValueNum> as a Boolean
|
|
//! Error if Index out of Range, or not a Logical
|
|
Standard_EXPORT Standard_Boolean ValueAsLogical (const Standard_Integer ValueNum) const;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(IGESDefs_GenericData,IGESData_IGESEntity)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
Standard_Integer theNbPropertyValues;
|
|
Handle(TCollection_HAsciiString) theName;
|
|
Handle(TColStd_HArray1OfInteger) theTypes;
|
|
Handle(TColStd_HArray1OfTransient) theValues;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _IGESDefs_GenericData_HeaderFile
|