Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Rotates.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/ResfileReader.hh
11 /// @brief header of classes for resfile options
12 /// @author Gordon Lemmon
13 
14 #ifndef INCLUDED_protocols_ligand_docking_Rotates_hh
15 #define INCLUDED_protocols_ligand_docking_Rotates_hh
16 
17 // Unit Headers
18 #include <protocols/moves/Mover.hh>
21 
22 //// Scripter Headers
23 #include <utility/tag/Tag.fwd.hh>
26 
27 //// Project Headers
28 #include <utility/vector1.hh>
29 
30 ///////////////////////////////////////////////////////////////////////
31 
32 namespace protocols {
33 namespace ligand_docking {
34 
36 {
37 public:
38  Rotates();
39  virtual ~Rotates();
40  Rotates(Rotates const & that);
41 
42  virtual protocols::moves::MoverOP clone() const;
44  virtual std::string get_name() const;
45 
46  void parse_my_tag(
47  utility::tag::TagPtr const tag,
51  core::pose::Pose const &
52  );
53 
54  void apply(core::pose::Pose & pose);
55 
56 private:
58 };
59 
60 
61 } //namespace ligand_docking
62 } //namespace protocols
63 
64 #endif