Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopsDefiner.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/LoopsDefiner.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_LoopsDefiner_HH
15 #define INCLUDED_protocols_loops_loops_definers_LoopsDefiner_HH
16 
17 
18 // Unit Headers
21 
22 // Platform Headers
23 #include <core/pose/Pose.fwd.hh>
25 
26 // Utility Headers
27 #include <utility/tag/Tag.fwd.hh>
28 #include <utility/pointer/ReferenceCount.hh>
29 
30 
31 namespace protocols {
32 namespace loops {
33 namespace loops_definers {
34 
36 public:
37  virtual
39 
40  /// @brief Create another loops definer of the type matching the most-derived
41  /// version of the class.
42  virtual
44  clone() const = 0;
45 
46  /// @brief Used to parse an xml-like tag to load a SerializedLoopLists data structure into the pose.
47  virtual
48  void
51  moves::DataMap const &,
52  core::pose::Pose const &) = 0;
53 
54  virtual
56  apply(
57  core::pose::Pose const &) = 0;
58 
59 };
60 
61 // do not add any derived classes to this file, unless they are
62 // generalized abstract base classes and do not actually 'do any work'
63 
64 } //namespace
65 } //namespace
66 } //namespace
67 
68 #endif