mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
69 lines
2.3 KiB
C++
69 lines
2.3 KiB
C++
// Created by: CKY / Contract Toubro-Larsen
|
|
// 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.
|
|
|
|
//--------------------------------------------------------------------
|
|
//--------------------------------------------------------------------
|
|
|
|
#include <IGESBasic_SubfigureDef.hxx>
|
|
#include <IGESData_IGESEntity.hxx>
|
|
#include <Standard_DimensionMismatch.hxx>
|
|
#include <Standard_Transient.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <TCollection_HAsciiString.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(IGESBasic_SubfigureDef,IGESData_IGESEntity)
|
|
|
|
IGESBasic_SubfigureDef::IGESBasic_SubfigureDef () { }
|
|
|
|
|
|
void IGESBasic_SubfigureDef::Init
|
|
(const Standard_Integer aDepth,
|
|
const Handle(TCollection_HAsciiString)& aName,
|
|
const Handle(IGESData_HArray1OfIGESEntity)& allAssocEntities)
|
|
{
|
|
if (!allAssocEntities.IsNull() && allAssocEntities->Lower() != 1)
|
|
throw Standard_DimensionMismatch("IGESBasic_SubfigureDef : Init");
|
|
theDepth = aDepth;
|
|
theName = aName;
|
|
theAssocEntities = allAssocEntities;
|
|
InitTypeAndForm(308,0);
|
|
}
|
|
|
|
Standard_Integer IGESBasic_SubfigureDef::Depth () const
|
|
{
|
|
return theDepth;
|
|
}
|
|
|
|
Handle(TCollection_HAsciiString) IGESBasic_SubfigureDef::Name () const
|
|
{
|
|
return theName;
|
|
}
|
|
|
|
Standard_Integer IGESBasic_SubfigureDef::NbEntities () const
|
|
{
|
|
return (theAssocEntities.IsNull() ? 0 : theAssocEntities->Length());
|
|
}
|
|
|
|
Handle(IGESData_IGESEntity) IGESBasic_SubfigureDef::AssociatedEntity
|
|
(const Standard_Integer Index) const
|
|
{
|
|
return theAssocEntities->Value(Index);
|
|
}
|
|
|
|
Handle(Standard_Transient) IGESBasic_SubfigureDef::Value (const Standard_Integer Index) const
|
|
{
|
|
return Handle(Standard_Transient) (theAssocEntities->Value(Index));
|
|
}
|