0033041: Coding - get rid of unused headers [TopTools to Xw]
[occt.git] / src / Transfer / Transfer_DispatchControl.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_InterfaceModel.hxx>
16 #include <Standard_Transient.hxx>
17 #include <Standard_Type.hxx>
18 #include <Transfer_DispatchControl.hxx>
19 #include <Transfer_TransientProcess.hxx>
20
21 IMPLEMENT_STANDARD_RTTIEXT(Transfer_DispatchControl,Interface_CopyControl)
22
23 Transfer_DispatchControl::Transfer_DispatchControl
24   (const Handle(Interface_InterfaceModel)& model,
25    const Handle(Transfer_TransientProcess)& TP)
26       { themodel = model;  theTP = TP;  }
27
28
29     const Handle(Transfer_TransientProcess)&
30   Transfer_DispatchControl::TransientProcess () const
31       { return theTP;  }
32
33     const Handle(Interface_InterfaceModel)&
34   Transfer_DispatchControl::StartingModel () const
35       { return themodel; }
36
37     void Transfer_DispatchControl::Clear ()  { theTP->Clear();  }
38
39
40     void Transfer_DispatchControl::Bind
41   (const Handle(Standard_Transient)& ent,
42    const Handle(Standard_Transient)& res)
43       {  theTP->BindTransient(ent,res);  }
44
45
46     Standard_Boolean  Transfer_DispatchControl::Search
47   (const Handle(Standard_Transient)& ent,
48    Handle(Standard_Transient)&res) const
49       {  res = theTP->FindTransient(ent);  return !res.IsNull();  }