Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RNA_Fragments.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
11 /// @brief
12 /// @author rhiju
13 
14 #ifndef INCLUDED_protocols_rna_RNA_Fragments_HH
15 #define INCLUDED_protocols_rna_RNA_Fragments_HH
16 
19 // AUTO-REMOVED #include <protocols/rna/RNA_MatchType.hh>
20 #include <core/types.hh>
21 #include <core/pose/Pose.fwd.hh>
22 #include <utility/pointer/ReferenceCount.hh>
23 
24 #include <utility/vector1.hh>
25 
26 #ifdef WIN32
28 #endif
29 
30 
31 namespace protocols{
32 namespace rna{
33 
35  public:
36 
37  //Constructor -- needs vall_torsions_file to get started.
38  RNA_Fragments();
39 
40  virtual ~RNA_Fragments();
41 
42  public:
43 
44  //Probably the only thing that will actually get called publicly:
45  virtual void
47  core::pose::Pose & pose,
48  core::Size const position,
49  core::Size const size,
50  core::Size const type,
51  toolbox::AllowInsertOP allow_insert );
52 
53 
54  virtual bool
55  is_fullatom();
56 
57  };
58 
59 }
60 }
61 
62 #endif