Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
BasicSilentStructCreators.cc
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 
10 /// @file core/io/silent/SilentStructCreator.hh
11 /// @brief Base class for SilentStructCreators for the SilentStruct load-time factory registration scheme
12 /// @author James Thompson
13 
14 // Unit Headers
16 
17 // Package Headers
18 
20 // AUTO-REMOVED #include <core/io/silent/SilentStructFactory.hh>
26 
27 //Auto Headers
29 #include <utility/vector1.hh>
30 
31 
32 namespace core {
33 namespace io {
34 namespace silent {
35 
36 
41 }
42 
44  return "protein_float";
45 }
46 
47 
48 
49 // class def for ProteinSilentStruct
53  return new ProteinSilentStruct;
54 }
55 
57  return "protein";
58 }
59 
60 // class def for RNA_SilentStruct
64  return new RNA_SilentStruct;
65 }
66 
68  return "rna";
69 }
70 
71 // class def for BinaryProteinSilentStruct
75  return new BinaryProteinSilentStruct;
76 }
77 
79  return "binary";
80 }
81 
82 // class def for ScoreFileSilentStruct
86  return new ScoreFileSilentStruct;
87 }
88 
90  return "score";
91 }
92 
93 // class def for BinaryRNASilentStruct
97  return new BinaryRNASilentStruct;
98 }
99 
101  return "binary_rna";
102 }
103 
104 
105 
106 } //namespace silent
107 } //namespace io
108 } //namespace core