Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AdditionalConstraintCreators.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/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 
15 // Unit Headers
17 
18 /// Project Headers
23 
24 #include <utility/vector1.hh>
25 
26 
27 namespace protocols {
28 namespace constraints_additional {
29 
30 
33 
36  return new BindingSiteConstraint;
37 }
38 
40 {
41  return "BindingSite";
42 }
43 
46 
49 {
51 }
52 
55 {
56  return "SequenceCoupling1BD";
57 }
60 
63 {
64  return new SequenceCouplingConstraint;
65 }
66 
69 {
70  return "SequenceCoupling";
71 }
72 
75 
78 {
80 }
81 
84  return "AtomPair";
85 }
86 
87 } //namespace constraints_additional
88 } //namespace protocols