Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
BasicSilentStructCreators.hh
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/BasicSilentStructCreator.hh
11 /// @brief Base class for BasicSilentStructCreators for the BasicSilentStruct load-time factory registration scheme
12 /// @author James Thompson
13 
14 #ifndef INCLUDED_core_io_silent_BasicSilentStructCreators_hh
15 #define INCLUDED_core_io_silent_BasicSilentStructCreators_hh
16 
17 // Unit Headers
18 // AUTO-REMOVED #include <core/io/silent/SilentStruct.hh>
20 
21 // c++ headers
22 // AUTO-REMOVED #include <string>
23 
24 #include <core/types.hh>
25 #include <utility/vector1.hh>
26 
27 
28 namespace core {
29 namespace io {
30 namespace silent {
31 
32 /// @brief creator for the ProteinSilentStruct_SinglePrec class
34 {
35 public:
38 
39  virtual SilentStructOP create_silent_struct() const;
40  virtual std::string keyname() const;
41 };
42 
43 
44 /// @brief creator for the ProteinSilentStruct class
46 {
47 public:
50 
51  virtual SilentStructOP create_silent_struct() const;
52  virtual std::string keyname() const;
53 };
54 
55 
56 /// @brief creator for the RNA_SilentStruct class
58 {
59 public:
61  virtual ~RNA_SilentStructCreator();
62 
63  virtual SilentStructOP create_silent_struct() const;
64  virtual std::string keyname() const;
65 };
66 
67 
68 /// @brief creator for the BinaryProteinSilentStruct class
70 {
71 public:
74 
75  virtual SilentStructOP create_silent_struct() const;
76  virtual std::string keyname() const;
77 };
78 
79 
80 /// @brief creator for the ScoreFileSilentStruct class
82 {
83 public:
86 
87  virtual SilentStructOP create_silent_struct() const;
88  virtual std::string keyname() const;
89 };
90 
91 
92 /// @brief creator for the BinaryRNASilentStruct class
94 {
95 public:
98 
99  virtual SilentStructOP create_silent_struct() const;
100  virtual std::string keyname() const;
101 };
102 
103 
104 } //namespace silent
105 } //namespace io
106 } //namespace core
107 
108 #endif