Module EDImportLib
[hide private]
[frames] | no frames]

Source Code for Module EDImportLib

 1  # 
 2  #    Project: The EDNA Kernel 
 3  #             http://www.edna-site.org 
 4  # 
 5  #    File: "$Id$" 
 6  # 
 7  #    Copyright (C) 2008-2009 European Synchrotron Radiation Facility 
 8  #                            Grenoble, France 
 9  # 
10  #    Principal authors: Marie-Francoise Incardona (incardon@esrf.fr) 
11  #                       Olof Svensson (svensson@esrf.fr)  
12  #                       Jerome Kieffer (kieffer@esrf.fr) 
13  # 
14  #    This program is free software: you can redistribute it and/or modify 
15  #    it under the terms of the GNU Lesser General Public License as published 
16  #    by the Free Software Foundation, either version 3 of the License, or 
17  #    (at your option) any later version. 
18  # 
19  #    This program is distributed in the hope that it will be useful, 
20  #    but WITHOUT ANY WARRANTY; without even the implied warranty of 
21  #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
22  #    GNU Lesser General Public License for more details. 
23  # 
24  #    You should have received a copy of the GNU General Public License 
25  #    and the GNU Lesser General Public License  along with this program.   
26  #    If not, see <http://www.gnu.org/licenses/>. 
27  # 
28   
29  """ 
30  EDImportLib is a module for importing them all 
31   
32  Note that the use of EDImportLib is deprecated, instead please import the  
33  classes directly. 
34  """ 
35   
36  __authors__ = ["Marie-Francoise Incardona", "Olof Svensson", "Jerome Kieffer"] 
37  __contact__ = "svensson@esrf.eu" 
38  __license__ = "LGPLv3+" 
39  __copyright__ = "European Synchrotron Radiation Facility, Grenoble, France" 
40   
41   
42  import os 
43   
44  from EDVerbose                    import EDVerbose 
45  EDVerbose.screen("Warning! The use of EDImportLib is deprecated. Please import the classes directly.") 
46   
47  from EDObject                     import EDObject 
48  from EDLogFile                    import EDLogFile 
49  from EDAction                     import EDAction 
50  from EDSlot                       import EDSlot 
51  from EDActionCluster              import EDActionCluster 
52  from EDCommandLine                import EDCommandLine 
53   
54  from EDCompiler                   import EDCompiler 
55  from EDList                       import EDList 
56