Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopFragmentClaimer.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 TopologyBroker
11 /// @brief top-class (Organizer) of the TopologyBroker mechanism
12 /// @detailed responsibilities:
13 /// @author Oliver Lange
14 
15 
16 #ifndef INCLUDED_protocols_topology_broker_LoopFragmentClaimer_hh
17 #define INCLUDED_protocols_topology_broker_LoopFragmentClaimer_hh
18 
19 
20 // Unit Headers
22 
23 // Package Headers
25 
26 // Project Headers
27 #include <core/pose/Pose.fwd.hh>
29 //#include <core/fragment/LoopFragSet.hh>
30 // AUTO-REMOVED #include <protocols/simple_moves/FragmentMover.hh>
31 
32 // ObjexxFCL Headers
33 
34 // Utility headers
35 //#include <utility/io/izstream.hh>
36 //#include <utility/io/ozstream.hh>
37 //#include <utility/io/util.hh>
38 //#include <basic/Tracer.hh>
39 //#include <basic/options/option.hh>
40 
41 #include <utility/pointer/ReferenceCount.hh>
42 
43 //#include <basic/options/option_macros.hh>
44 
45 //// C++ headers
46 //#include <fstream>
47 #include <string>
48 
49 #include <utility/vector1.hh>
50 
51 
52 // option key includes
53 
54 
55 namespace protocols {
56 namespace topology_broker {
57 
59 public:
61 
62  ///@brief type() is specifying the output name of the TopologyClaimer
63  virtual std::string type() const {
64  return _static_type_name();
65  }
66 
68  return "LoopFragmentClaimer";
69  }
70 
71  virtual moves::MoverOP get_mover( core::pose::Pose const& /*pose*/ ) const {
72  return NULL; //override FragmentClaimer functionality
73  }
74 
76  // { virtual void loop_frags( core::fragment::FragSet& ) const;
77 
78 }; //class LoopFragmentClaimer
79 
80 
81 }
82 }
83 
84 #endif