mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
33
src/StepAP214/StepAP214_AppliedPresentedItem.cxx
Executable file
33
src/StepAP214/StepAP214_AppliedPresentedItem.cxx
Executable file
@@ -0,0 +1,33 @@
|
||||
#include <StepAP214_AppliedPresentedItem.ixx>
|
||||
|
||||
|
||||
StepAP214_AppliedPresentedItem::StepAP214_AppliedPresentedItem () {}
|
||||
|
||||
void StepAP214_AppliedPresentedItem::Init(
|
||||
const Handle(StepAP214_HArray1OfPresentedItemSelect)& aItems)
|
||||
{
|
||||
// --- classe own fields ---
|
||||
items = aItems;
|
||||
}
|
||||
|
||||
|
||||
void StepAP214_AppliedPresentedItem::SetItems(const Handle(StepAP214_HArray1OfPresentedItemSelect)& aItems)
|
||||
{
|
||||
items = aItems;
|
||||
}
|
||||
|
||||
Handle(StepAP214_HArray1OfPresentedItemSelect) StepAP214_AppliedPresentedItem::Items() const
|
||||
{
|
||||
return items;
|
||||
}
|
||||
|
||||
StepAP214_PresentedItemSelect StepAP214_AppliedPresentedItem::ItemsValue(const Standard_Integer num) const
|
||||
{
|
||||
return items->Value(num);
|
||||
}
|
||||
|
||||
Standard_Integer StepAP214_AppliedPresentedItem::NbItems () const
|
||||
{
|
||||
if (items.IsNull()) return 0;
|
||||
return items->Length();
|
||||
}
|
Reference in New Issue
Block a user