Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FlexPacker.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 protocols/flexpack/
11 /// @brief
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 
14 #ifndef INCLUDED_protocols_flexpack_FlexPacker_hh
15 #define INCLUDED_protocols_flexpack_FlexPacker_hh
16 
17 // Unit Headers
19 
20 #include <protocols/moves/Mover.hh>
21 
22 // Project headers
27 
28 /// Utility headers
29 // AUTO-REMOVED #include <utility/vector1.hh>
30 
31 #include <utility/vector1.hh>
32 
33 
34 namespace protocols {
35 namespace flexpack {
36 
37 class FlexPacker : public moves::Mover
38 {
39 public:
40  //FlexPacker();
41 
42 
43  FlexPacker(
47  );
48 
49 
50  virtual ~FlexPacker();
51 
52  virtual
53  void
54  apply( core::pose::Pose & pose );
55 
56  virtual std::string get_name() const;
57 
58  void
60 
61  void
63 
64  void
66 
67  void
69 
70 private:
71 
73 
75 
78 
79 };
80 
81 }
82 }
83 
84 #endif