0026586: Eliminate compile warnings obtained by building occt with vc14: declaration...
[occt.git] / src / StepData / StepData_FileProtocol.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
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
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.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14
15 #include <Interface_Check.hxx>
16 #include <Interface_Graph.hxx>
17 #include <Interface_Protocol.hxx>
18 #include <Standard_Type.hxx>
19 #include <StepData_FileProtocol.hxx>
20 #include <StepData_Protocol.hxx>
21
22 //static TCollection_AsciiString  thename("");
23 static Standard_CString  thename = "";
24
25 //  Protocol fabrique a la demande avec d autres Protocoles
26
27
28     StepData_FileProtocol::StepData_FileProtocol ()    {  }
29
30     void StepData_FileProtocol::Add (const Handle(StepData_Protocol)& protocol)
31 {
32   if (protocol.IsNull()) return;
33   Handle(Standard_Type) ptype = protocol->DynamicType();
34   Standard_Integer nb = thecomps.Length();
35   for (Standard_Integer i = 1; i <= nb; i ++) {
36     if (thecomps.Value(i)->IsInstance(ptype)) return;
37   }
38   thecomps.Append(protocol);
39 }
40
41
42     Standard_Integer  StepData_FileProtocol::NbResources () const
43       {  return thecomps.Length();  }
44
45     Handle(Interface_Protocol) StepData_FileProtocol::Resource
46   (const Standard_Integer num) const
47       {  return Handle(Interface_Protocol)::DownCast(thecomps.Value(num));  }
48
49
50     Standard_Integer  StepData_FileProtocol::TypeNumber
51   (const Handle(Standard_Type)& /*atype*/) const
52       {  return 0;  }
53
54
55 Standard_Boolean StepData_FileProtocol::GlobalCheck(const Interface_Graph& G,
56                                                     Handle(Interface_Check)& ach) const
57 {
58   Standard_Boolean res = Standard_False;
59   Standard_Integer i,nb = NbResources();
60   for (i = 1; i <= nb; i ++) res |= Resource(i)->GlobalCheck (G,ach);
61   return res;
62 }
63
64
65     Standard_CString StepData_FileProtocol::SchemaName () const
66       {  return thename;  }