0024750: Replace instantiations of TCollection generic classes by NCollection templat...
[occt.git] / src / StepData / StepData_DefaultGeneral.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
b311480e 13
7fd59977 14#include <StepData_DefaultGeneral.ixx>
15#include <StepData.hxx>
16#include <Interface_GeneralLib.hxx>
17#include <StepData_UndefinedEntity.hxx>
18#include <Interface_UndefinedContent.hxx>
19#include <Interface_Macros.hxx>
20#include <Interface_ParamType.hxx>
21
22
23// DefaultGeneral de StepData reconnait UN SEUL TYPE : UndefinedEntity
24
25
b311480e 26StepData_DefaultGeneral::StepData_DefaultGeneral ()
7fd59977 27{
28 Interface_GeneralLib::SetGlobal (this, StepData::Protocol());
29}
30
31 void StepData_DefaultGeneral::FillSharedCase
32 (const Standard_Integer casenum, const Handle(Standard_Transient)& ent,
33 Interface_EntityIterator& iter) const
34{
35 if (casenum != 1) return;
36 DeclareAndCast(StepData_UndefinedEntity,undf,ent);
37 Handle(Interface_UndefinedContent) cont = undf->UndefinedContent();
38 Standard_Integer nb = cont->NbParams();
39 for (Standard_Integer i = 1; i <= nb; i ++) {
40 Interface_ParamType ptype = cont->ParamType(i);
41 if (ptype == Interface_ParamSub) {
42 DeclareAndCast(StepData_UndefinedEntity,subent,cont->ParamEntity(i));
43 FillSharedCase(casenum,cont->ParamEntity(i),iter);
44 } else if (ptype == Interface_ParamIdent) {
45 iter.GetOneItem(cont->ParamEntity(i));
46 }
47 }
48}
49
50
35e08fe8 51void StepData_DefaultGeneral::CheckCase(const Standard_Integer,
52 const Handle(Standard_Transient)&,
53 const Interface_ShareTool&,
54 Handle(Interface_Check)&) const
7fd59977 55{
56} // pas de Check sur une UndefinedEntity
57
58
59 Standard_Boolean StepData_DefaultGeneral::NewVoid
60 (const Standard_Integer CN, Handle(Standard_Transient)& ent) const
61{
62 if (CN != 1) return Standard_False;
63 ent = new StepData_UndefinedEntity;
64 return Standard_True;
65}
66
67 void StepData_DefaultGeneral::CopyCase
68 (const Standard_Integer casenum, const Handle(Standard_Transient)& entfrom,
69 const Handle(Standard_Transient)& entto, Interface_CopyTool& TC) const
70{
71 if (casenum != 1) return;
72 DeclareAndCast(StepData_UndefinedEntity,undfrom,entfrom);
73 DeclareAndCast(StepData_UndefinedEntity,undto,entto);
74 undto->GetFromAnother(undfrom,TC); // On pourrait rapatrier cela
75}