1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-10 18:51:21 +03:00
occt/src/IGESBasic/IGESBasic_SubfigureDef.cxx
abv 5b111128de 0024023: Revamp the OCCT Handle - gcc and clang
Adaptations for compiling with GCC 4.7 and 4.8:
- Construction semantics is used for Handle objects being initialized by const Handle objects of derived type, to avoid overload resolution error in GCC 4.7.
- Missing includes added.
- Fixed bugs related to misuse of direct casts of handle.
- Eliminate CLang warnings on uninitialized and unused variables, functions, and expressions
2015-07-12 13:57:20 +03:00

68 lines
2.2 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_OutOfRange.hxx>
#include <Standard_Transient.hxx>
#include <Standard_Type.hxx>
#include <TCollection_HAsciiString.hxx>
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)
Standard_DimensionMismatch::Raise("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));
}