Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ModifyVariantTypeMover.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 src/protocols/simple_moves/ModifyVariantTypeMover.hh
11 /// @brief
12 /// @author
13 
14 #ifndef INCLUDED_protocols_simple_moves_ModifyVariantTypeMover_HH
15 #define INCLUDED_protocols_simple_moves_ModifyVariantTypeMover_HH
16 
17 // Unit Headers
18 #include <protocols/moves/Mover.hh>
20 
22 
23 // Project headers
24 // AUTO-REMOVED #include <core/types.hh>
25 
26 #include <core/pose/Pose.fwd.hh>
27 
28 // AUTO-REMOVED #include <core/scoring/ScoreType.hh>
29 // AUTO-REMOVED #include <core/scoring/ScoreFunction.fwd.hh>
30 
31 // ObjexxFCL Headers
32 
33 // C++ Headers
34 #include <string>
35 
36 // Utility Headers
37 #include <utility/pointer/ReferenceCount.hh>
38 // AUTO-REMOVED #include <ObjexxFCL/string.functions.hh>
39 
40 #include <utility/vector1.hh>
41 
42 
43 namespace protocols {
44 namespace simple_moves {
45 
46 /// @brief Adds variant types to selected residues
48 {
49 public:
50  // default constructor (nmoves=1)
52 
53  virtual void apply( core::pose::Pose & pose );
54  virtual std::string get_name() const;
55 
56  virtual moves::MoverOP clone() const;
57  virtual moves::MoverOP fresh_instance() const;
59 
60 private:
64 };
65 
66 } // moves
67 } // protocols
68 
69 
70 #endif