Rosetta
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
loader.py
Go to the documentation of this file.
1 # (c) Copyright Rosetta Commons Member Institutions.
2 # (c) This file is part of the Rosetta software suite and is made available under license.
3 # (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
4 # (c) For more information, see http://www.rosettacommons.org. Questions about this can be
5 # (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
6 
7 __all__ = ['BaseLoader', 'SafeLoader', 'Loader']
8 
9 from reader import *
10 from scanner import *
11 from parser import *
12 from composer import *
13 from constructor import *
14 from resolver import *
15 
17 
18  def __init__(self, stream):
19  Reader.__init__(self, stream)
20  Scanner.__init__(self)
21  Parser.__init__(self)
22  Composer.__init__(self)
23  BaseConstructor.__init__(self)
24  BaseResolver.__init__(self)
25 
27 
28  def __init__(self, stream):
29  Reader.__init__(self, stream)
30  Scanner.__init__(self)
31  Parser.__init__(self)
32  Composer.__init__(self)
33  SafeConstructor.__init__(self)
34  Resolver.__init__(self)
35 
37 
38  def __init__(self, stream):
39  Reader.__init__(self, stream)
40  Scanner.__init__(self)
41  Parser.__init__(self)
42  Composer.__init__(self)
43  Constructor.__init__(self)
44  Resolver.__init__(self)
45