mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-16 10:54:53 +03:00
97 lines
2.9 KiB
C++
Executable File
97 lines
2.9 KiB
C++
Executable File
//--------------------------------------------------------------------
|
|
//
|
|
// 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;
|
|
}
|