summaryrefslogtreecommitdiff
path: root/src/IGESData/IGESData_DefaultGeneral.cxx
blob: f87b63cbb56b1f3bde9af5614b5eebd9a8cdfc51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <IGESData_DefaultGeneral.ixx>
#include <IGESData_UndefinedEntity.hxx>
#include <IGESData_FreeFormatEntity.hxx>
#include <TColStd_HSequenceOfInteger.hxx>
#include <Interface_UndefinedContent.hxx>
#include <Interface_GeneralLib.hxx>
#include <IGESData.hxx>
#include <IGESData_Protocol.hxx>
#include <Interface_Macros.hxx>



    IGESData_DefaultGeneral::IGESData_DefaultGeneral ()
{  Interface_GeneralLib::SetGlobal(this, IGESData::Protocol());  }

    void  IGESData_DefaultGeneral::OwnSharedCase
  (const Standard_Integer CN, const Handle(IGESData_IGESEntity)& ent,
   Interface_EntityIterator& iter) const
{
  if (CN == 0) return;
  DeclareAndCast(IGESData_UndefinedEntity,anent,ent);
  if (anent.IsNull()) return;
  Handle(Interface_UndefinedContent) cont = anent->UndefinedContent();
  Standard_Integer nb = cont->NbParams();
  for (Standard_Integer i = 1; i <= nb; i ++) {
    if (cont->IsParamEntity(i)) iter.GetOneItem (cont->ParamEntity(i));
  }
}


    IGESData_DirChecker  IGESData_DefaultGeneral::DirChecker
  (const Standard_Integer , const Handle(IGESData_IGESEntity)& ) const 
{  IGESData_DirChecker dc; return dc;  }  // aucun critere specifique


    void  IGESData_DefaultGeneral::OwnCheckCase
  (const Standard_Integer , const Handle(IGESData_IGESEntity)& ,
   const Interface_ShareTool& , Handle(Interface_Check)& ) const 
{  }  // aucun critere specifique


    Standard_Boolean  IGESData_DefaultGeneral::NewVoid
  (const Standard_Integer CN, Handle(Standard_Transient)& entto) const
{
  entto.Nullify();
  if (CN == 0) return Standard_False;
  if (CN == 1) entto = new IGESData_UndefinedEntity;
  if (CN == 2) entto = new IGESData_FreeFormatEntity;
  return (!entto.IsNull());
}

    void  IGESData_DefaultGeneral::OwnCopyCase
  (const Standard_Integer CN,
   const Handle(IGESData_IGESEntity)& entfrom,
   const Handle(IGESData_IGESEntity)& entto,
   Interface_CopyTool& TC) const 
{
  if (CN == 0) return;
  DeclareAndCast(IGESData_UndefinedEntity,enfr,entfrom);
  DeclareAndCast(IGESData_UndefinedEntity,ento,entto);
//  ShallowCopy aura passe DirStatus
//  transmettre les contenus des UndefinedContents
  Handle(Interface_UndefinedContent) cont = new Interface_UndefinedContent;
  cont->GetFromAnother(enfr->UndefinedContent(),TC);
  ento->SetNewContent (cont);
//  FreeFormat, encore des choses
  if (enfr->IsKind(STANDARD_TYPE(IGESData_FreeFormatEntity))) {
    DeclareAndCast(IGESData_FreeFormatEntity,enf,entfrom);
    DeclareAndCast(IGESData_FreeFormatEntity,ent,entto);
    ent->ClearNegativePointers();
    ent->AddNegativePointers(enf->NegativePointers());
  }
}