mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-10 08:08:36 +08:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
48
src/StepData/StepData_FileProtocol.cxx
Executable file
48
src/StepData/StepData_FileProtocol.cxx
Executable file
@@ -0,0 +1,48 @@
|
||||
#include <StepData_FileProtocol.ixx>
|
||||
|
||||
|
||||
//static TCollection_AsciiString thename("");
|
||||
static Standard_CString thename = "";
|
||||
|
||||
// Protocol fabrique a la demande avec d autres Protocoles
|
||||
|
||||
|
||||
StepData_FileProtocol::StepData_FileProtocol () { }
|
||||
|
||||
void StepData_FileProtocol::Add (const Handle(StepData_Protocol)& protocol)
|
||||
{
|
||||
if (protocol.IsNull()) return;
|
||||
Handle(Standard_Type) ptype = protocol->DynamicType();
|
||||
Standard_Integer nb = thecomps.Length();
|
||||
for (Standard_Integer i = 1; i <= nb; i ++) {
|
||||
if (thecomps.Value(i)->IsInstance(ptype)) return;
|
||||
}
|
||||
thecomps.Append(protocol);
|
||||
}
|
||||
|
||||
|
||||
Standard_Integer StepData_FileProtocol::NbResources () const
|
||||
{ return thecomps.Length(); }
|
||||
|
||||
Handle(Interface_Protocol) StepData_FileProtocol::Resource
|
||||
(const Standard_Integer num) const
|
||||
{ return Handle(Interface_Protocol)::DownCast(thecomps.Value(num)); }
|
||||
|
||||
|
||||
Standard_Integer StepData_FileProtocol::TypeNumber
|
||||
(const Handle(Standard_Type)& atype) const
|
||||
{ return 0; }
|
||||
|
||||
|
||||
Standard_Boolean StepData_FileProtocol::GlobalCheck(const Interface_Graph& G,
|
||||
Handle(Interface_Check)& ach) const
|
||||
{
|
||||
Standard_Boolean res = Standard_False;
|
||||
Standard_Integer i,nb = NbResources();
|
||||
for (i = 1; i <= nb; i ++) res |= Resource(i)->GlobalCheck (G,ach);
|
||||
return res;
|
||||
}
|
||||
|
||||
|
||||
Standard_CString StepData_FileProtocol::SchemaName () const
|
||||
{ return thename; }
|
||||
Reference in New Issue
Block a user