Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AdditionalConstraintCreators.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/protocols/constraints_additional/AdditionalConstraintCreators.hh
11 /// @brief Base class for ConstraintCreators for the Constraint load-time factory registration scheme
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 
14 #ifndef INCLUDED_protocols_constraints_additional_AdditionalConstraintCreators_hh
15 #define INCLUDED_protocols_constraints_additional_AdditionalConstraintCreators_hh
16 
17 // Project Headers
19 
20 // C/C++ headers
21 #include <string>
22 
23 namespace protocols {
24 namespace constraints_additional {
25 
26 
27 /// @brief Mover creator for the BindingSiteConstraint constraint
29 {
30 public:
33 
35  virtual std::string keyname() const;
36 };
37 
38 /// @brief Mover creator for the SequenceCoupling1BDconstraint
40 {
41 public:
44 
46  virtual std::string keyname() const;
47 };
48 
49 /// @brief Mover creator for the SequenceCouplingconstraint
51 {
52 public:
55 
57  virtual std::string keyname() const;
58 };
59 
60 /// @brief This class can be used to replace the standard AtomPairConstraintsCreator; see BrokerMain.cc for an example
62 {
63 public:
66 
68  virtual std::string keyname() const;
69 };
70 
71 
72 } //namespace constraints_additional
73 } //namespace protocols
74 
75 #endif