Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopsExplicitDefiner.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/loops/loops_definers/LoopsExplicitDefiner.hh
11 /// @brief A loops definer is creates a serialized loops list
12 /// @author Matthew O'Meara (mattjomear@gmail.com)
13 
14 #ifndef INCLUDED_protocols_loops_loops_definers_LoopsExplicitDefiner_HH
15 #define INCLUDED_protocols_loops_loops_definers_LoopsExplicitDefiner_HH
16 
17 // Unit Headers
20 
21 #ifdef WIN32
22 #include <protocols/loops/Loop.hh>
23 #else
25 #endif
26 
27 // Platform Headers
28 #include <core/pose/Pose.fwd.hh>
29 
30 // Utility Headers
31 #include <utility/tag/Tag.fwd.hh>
32 #include <utility/pointer/ReferenceCount.hh>
33 #include <utility/vector1.hh>
34 
35 // C++ Headers
36 #include <string>
37 
38 
39 namespace protocols {
40 namespace loops {
41 namespace loops_definers {
42 
44 public:
45 
47 
48  virtual
50 
52  LoopsExplicitDefiner const & src);
53 
54  /// @brief Create another loops definer of the type matching the most-derived
55  /// version of the class.
56  virtual
58  clone() const;
59 
60 
61  void
63  utility::tag::TagPtr const tag,
64  moves::DataMap const & data,
65  core::pose::Pose const &);
66 
67 
69  apply(
70  core::pose::Pose const &);
71 
72 private:
75  utility::tag::TagPtr const tag,
76  std::string const & loops_name);
77 
78 
79 private:
81 
82 };
83 
84 // do not add any derived classes to this file, unless they are
85 // generalized abstract base classes and do not actually 'do any work'
86 
87 } //namespace
88 } //namespace
89 } //namespace
90 
91 #endif
92 
93