Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoadPDBMover.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 LoadPDBMover.hh
11 /// @brief switch the chain order
12 
13 #ifndef INCLUDED_protocols_simple_moves_LoadPDBMover_hh
14 #define INCLUDED_protocols_simple_moves_LoadPDBMover_hh
15 
17 #include <protocols/moves/Mover.hh>
19 
22 #include <core/pose/Pose.fwd.hh>
23 
24 // C++ Headers
25 #include <string>
26 
27 #include <utility/vector1.hh>
28 
29 
30 namespace protocols {
31 namespace simple_moves {
32 
33 class LoadPDBMover : public moves::Mover {
34 public:
35  LoadPDBMover();
36 
37  virtual void apply( core::pose::Pose & pose );
38  virtual std::string get_name() const;
39 
40  virtual moves::MoverOP clone() const;
41  virtual moves::MoverOP fresh_instance() const;
42 
43  virtual void parse_my_tag(
44  utility::tag::TagPtr const tag,
46  protocols::filters::Filters_map const & filters,
47  protocols::moves::Movers_map const & movers,
48  core::pose::Pose const & pose );
49 
50  std::string filename() const;
51  void filename( std::string const f );
52 private:
54 };
55 
56 
57 } // simple_moves
58 } // protocols
59 
60 #endif