Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ResLvlTaskOperationCreators.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/pack/task/operation/ResLvlTaskOperationCreators.hh
11 /// @brief Declaration for the class that connects ResLvlTaskOperations with the ResLvlTaskOperationFactory
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 /// @author ashworth
14 
15 #ifndef INCLUDED_core_pack_task_operation_ResLvlTaskOperationCreators_hh
16 #define INCLUDED_core_pack_task_operation_ResLvlTaskOperationCreators_hh
17 
19 
21 
22 #include <string>
23 
24 
25 namespace core {
26 namespace pack {
27 namespace task {
28 namespace operation {
29 
31 public:
33  virtual std::string keyname() const { return "RestrictToRepackingRLT"; }
34 };
35 
37 public:
39  virtual std::string keyname() const { return "RestrictAbsentCanonicalAASRLT"; }
40 };
41 
43 public:
45  virtual std::string keyname() const { return "DisallowIfNonnativeRLT"; }
46 };
47 
49 public:
51  virtual std::string keyname() const { return "PreventRepackingRLT"; }
52 };
53 
55 public:
57  virtual std::string keyname() const { return "AddBehaviorRLT"; }
58 };
59 
60 } //namespace operation
61 } //namespace task
62 } //namespace pack
63 } //namespace core
64 
65 #endif