Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopsFileDefiner.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/LoopsFileDefiner.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_LoopsFileDefiner_HH
15 #define INCLUDED_protocols_loops_loops_definers_LoopsFileDefiner_HH
16 
17 // Unit Headers
20 
21 #ifdef WIN32
22 #include <protocols/loops/Loop.hh>
23 #else
25 #endif
26 
28 
29 // Platform Headers
30 #include <core/pose/Pose.fwd.hh>
31 
32 // Utility Headers
33 #include <utility/tag/Tag.fwd.hh>
34 #include <utility/pointer/ReferenceCount.hh>
35 #include <utility/vector1.hh>
36 
37 // C++ Headers
38 #include <string>
39 
40 
41 namespace protocols {
42 namespace loops {
43 namespace loops_definers {
44 
46 public:
47 
49 
50  virtual
52 
54  LoopsFileDefiner const & src);
55 
56  /// @brief Create another loops definer of the type matching the most-derived
57  /// version of the class.
58  virtual
60  clone() const;
61 
62 
63  /// @brief Used to parse an xml-like tag to load parameters and properties.
64  virtual
65  void
67  utility::tag::TagPtr const tag,
68  moves::DataMap const & data,
69  core::pose::Pose const &);
70 
71  virtual
73  apply(
74  core::pose::Pose const &);
75 
76 private:
78 };
79 
80 } //namespace
81 } //namespace
82 } //namespace
83 
84 #endif
85 
86