1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-04 13:13:25 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,87 @@
#include <RWStepAP214_RWAppliedApprovalAssignment.ixx>
#include <StepAP214_HArray1OfApprovalItem.hxx>
#include <StepAP214_ApprovalItem.hxx>
#include <StepBasic_Approval.hxx>
#include <Interface_EntityIterator.hxx>
#include <StepAP214_AppliedApprovalAssignment.hxx>
RWStepAP214_RWAppliedApprovalAssignment::RWStepAP214_RWAppliedApprovalAssignment () {}
void RWStepAP214_RWAppliedApprovalAssignment::ReadStep
(const Handle(StepData_StepReaderData)& data,
const Standard_Integer num,
Handle(Interface_Check)& ach,
const Handle(StepAP214_AppliedApprovalAssignment)& ent) const
{
// --- Number of Parameter Control ---
if (!data->CheckNbParams(num,2,ach,"applied_approval_assignment")) return;
// --- inherited field : assignedApproval ---
Handle(StepBasic_Approval) aAssignedApproval;
#ifdef DEB
Standard_Boolean stat1 =
#endif
data->ReadEntity(num, 1,"assigned_approval", ach, STANDARD_TYPE(StepBasic_Approval), aAssignedApproval);
// --- own field : items ---
Handle(StepAP214_HArray1OfApprovalItem) aItems;
StepAP214_ApprovalItem aItemsItem;
Standard_Integer nsub2;
if (data->ReadSubList (num,2,"items",ach,nsub2)) {
Standard_Integer nb2 = data->NbParams(nsub2);
aItems = new StepAP214_HArray1OfApprovalItem (1, nb2);
for (Standard_Integer i2 = 1; i2 <= nb2; i2 ++) {
Standard_Boolean stat2 = data->ReadEntity
(nsub2,i2,"items",ach,aItemsItem);
if (stat2) aItems->SetValue(i2,aItemsItem);
}
}
//--- Initialisation of the read entity ---
ent->Init(aAssignedApproval, aItems);
}
void RWStepAP214_RWAppliedApprovalAssignment::WriteStep
(StepData_StepWriter& SW,
const Handle(StepAP214_AppliedApprovalAssignment)& ent) const
{
// --- inherited field assignedApproval ---
SW.Send(ent->AssignedApproval());
// --- own field : items ---
SW.OpenSub();
for (Standard_Integer i2 = 1; i2 <= ent->NbItems(); i2 ++) {
SW.Send(ent->ItemsValue(i2).Value());
}
SW.CloseSub();
}
void RWStepAP214_RWAppliedApprovalAssignment::Share(const Handle(StepAP214_AppliedApprovalAssignment)& ent, Interface_EntityIterator& iter) const
{
iter.GetOneItem(ent->AssignedApproval());
Standard_Integer nbElem2 = ent->NbItems();
for (Standard_Integer is2=1; is2<=nbElem2; is2 ++) {
iter.GetOneItem(ent->ItemsValue(is2).Value());
}
}