Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DsspMover.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/moves/DsspMover.hh
11 /// @brief header file of DsspMover.cc
12 /// @author Nobuyasu Koga ( nobuyasau@uw.edu )
13 
14 #ifndef INCLUDED_protocols_moves_DsspMover_hh
15 #define INCLUDED_protocols_moves_DsspMover_hh
16 
17 // Project headers
18 #include <core/pose/Pose.fwd.hh>
19 #include <protocols/moves/Mover.hh>
20 
24 #include <utility/tag/Tag.fwd.hh>
25 
26 #include <utility/vector1.hh>
27 
28 #ifdef WIN32
29  #include <utility/tag/Tag.hh>
30 #endif
31 
32 
33 namespace protocols {
34 namespace moves {
35 
36 
37 class DsspMover : public Mover {
38 public:
39 
45 
46 public:
47 
48  // default constructor
49  DsspMover();
50 
51  // @brief destructor
52  ~DsspMover();
53 
54  /// @brief clone this object
55  virtual MoverOP clone() const;
56 
57  /// @brief create this type of object
58  virtual MoverOP fresh_instance() const;
59 
60  // @brief virtual main operation
61  virtual void apply( core::pose::Pose & pose );
62  virtual std::string get_name() const;
63 
64  void parse_my_tag( TagPtr const, DataMap &, Filters_map const &, Movers_map const &, Pose const & );
65 
66 
67 };
68 
69 
70 } // moves
71 } // protocols
72 
73 
74 #endif