0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / Transfer / Transfer_ActorOfFinderProcess.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 <Standard_Transient.hxx>
16 #include <Standard_Type.hxx>
17 #include <Transfer_ActorOfFinderProcess.hxx>
18 #include <Transfer_Binder.hxx>
19 #include <Transfer_Finder.hxx>
20 #include <Transfer_FinderProcess.hxx>
21 #include <Transfer_ProcessForFinder.hxx>
22 #include <Transfer_SimpleBinderOfTransient.hxx>
23 #include <Transfer_TransientMapper.hxx>
24
25 IMPLEMENT_STANDARD_RTTIEXT(Transfer_ActorOfFinderProcess,Transfer_ActorOfProcessForFinder)
26
27 Transfer_ActorOfFinderProcess::Transfer_ActorOfFinderProcess ()    {  themodetrans = 0;  }
28
29 Standard_Integer& Transfer_ActorOfFinderProcess::ModeTrans ()
30 {  return themodetrans;  }
31
32 Handle(Transfer_Binder)  Transfer_ActorOfFinderProcess::Transfer
33   (const Handle(Transfer_Finder)& fnd,
34    const Handle(Transfer_FinderProcess)& FP)
35 {
36   Handle(Transfer_TransientMapper) tm = Handle(Transfer_TransientMapper)::DownCast (fnd);
37   if (tm.IsNull()) return NullResult();
38   Handle(Standard_Transient) res = TransferTransient (tm->Value(),FP);
39   if (res.IsNull()) return NullResult();
40   return TransientResult (res);
41 }
42
43 Handle(Transfer_Binder)  Transfer_ActorOfFinderProcess::Transferring
44   (const Handle(Transfer_Finder)& ent,
45    const Handle(Transfer_ProcessForFinder)& TP)
46 {
47   return Transfer(ent,Handle(Transfer_FinderProcess)::DownCast(TP));
48 }
49
50 Handle(Standard_Transient)  Transfer_ActorOfFinderProcess::TransferTransient
51   (const Handle(Standard_Transient)& /*ent*/,
52    const Handle(Transfer_FinderProcess)& )
53 {
54   Handle(Standard_Transient) nulres;
55   return nulres;
56 }