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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
//--------------------------------------------------------------------
//
// File Name : IGESBasic_Name.cxx
// Date :
// Author : CKY / Contract Toubro-Larsen
// Copyright : MATRA-DATAVISION 1993
//
//--------------------------------------------------------------------
#include <IGESBasic_ToolName.ixx>
#include <IGESData_ParamCursor.hxx>
#include <TCollection_HAsciiString.hxx>
#include <Interface_Macros.hxx>
#include <IGESData_Dump.hxx>
IGESBasic_ToolName::IGESBasic_ToolName () { }
void IGESBasic_ToolName::ReadOwnParams
(const Handle(IGESBasic_Name)& ent,
const Handle(IGESData_IGESReaderData)& /* IR */, IGESData_ParamReader& PR) const
{
Standard_Integer tempNbPropertyValues;
Handle(TCollection_HAsciiString) tempName;
//Standard_Boolean st; //szv#4:S4163:12Mar99 not needed
PR.ReadInteger(PR.Current(),"Number of property values",tempNbPropertyValues); //szv#4:S4163:12Mar99 `st=` not needed
PR.ReadText(PR.Current(),"Name",tempName); //szv#4:S4163:12Mar99 `st=` not needed
DirChecker(ent).CheckTypeAndForm(PR.CCheck(),ent);
ent->Init(tempNbPropertyValues,tempName);
}
void IGESBasic_ToolName::WriteOwnParams
(const Handle(IGESBasic_Name)& ent, IGESData_IGESWriter& IW) const
{
IW.Send(ent->NbPropertyValues());
IW.Send(ent->Value());
}
void IGESBasic_ToolName::OwnShared
(const Handle(IGESBasic_Name)& /* ent */, Interface_EntityIterator& /* iter */) const
{
}
void IGESBasic_ToolName::OwnCopy
(const Handle(IGESBasic_Name)& another,
const Handle(IGESBasic_Name)& ent, Interface_CopyTool& /* TC */) const
{
Standard_Integer aNbPropertyValues;
Handle(TCollection_HAsciiString) aName;
aName = new TCollection_HAsciiString(another->Value());
aNbPropertyValues = another->NbPropertyValues();
ent->Init(aNbPropertyValues,aName);
}
Standard_Boolean IGESBasic_ToolName::OwnCorrect
(const Handle(IGESBasic_Name)& ent) const
{
Standard_Boolean res = (ent->NbPropertyValues() != 1);
if (res) ent->Init(1,ent->Value());
return res; // nbpropertyvalues = 1
}
IGESData_DirChecker IGESBasic_ToolName::DirChecker
(const Handle(IGESBasic_Name)& /*ent*/ ) const
{
IGESData_DirChecker DC(406,15); //Form no = 15 & Type = 406
DC.Structure(IGESData_DefVoid);
DC.GraphicsIgnored();
DC.BlankStatusIgnored();
DC.UseFlagIgnored();
DC.HierarchyStatusIgnored();
return DC;
}
void IGESBasic_ToolName::OwnCheck
(const Handle(IGESBasic_Name)& ent,
const Interface_ShareTool& , Handle(Interface_Check)& ach) const
{
if (ent->NbPropertyValues() != 1)
ach->AddFail("Number of Property Values != 1");
}
void IGESBasic_ToolName::OwnDump
(const Handle(IGESBasic_Name)& ent, const IGESData_IGESDumper& /* dumper */,
const Handle(Message_Messenger)& S, const Standard_Integer /* level */) const
{
S << "IGESBasic_Name" << endl;
S << "Number of property values : " << ent->NbPropertyValues() << endl;
S << "Name : ";
IGESData_DumpString(S,ent->Value());
S << endl;
}
|