Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ResidueFeature.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/comparative_modeling/features/ResidueFeature.hh
11 /// @brief abstract base class for per-residue features used in comparative
12 /// modeling.
13 /// @author James Thompson
14 
15 #ifndef INCLUDED_protocols_comparative_modeling_features_ResidueFeature_HH
16 #define INCLUDED_protocols_comparative_modeling_features_ResidueFeature_HH
17 
18 // AUTO-REMOVED #include <utility/vector1.hh>
19 #include <utility/pointer/ReferenceCount.hh>
20 
21 #include <core/types.hh>
22 #include <core/pose/Pose.fwd.hh>
23 
25 
27 
28 #include <utility/vector1.hh>
29 
30 #ifdef WIN32
31 #include <string>
32 #endif
33 
34 namespace protocols {
35 namespace comparative_modeling {
36 namespace features {
37 
39 
40 public:
41  ///@brief Automatically generated virtual destructor for class deriving directly from ReferenceCount
42  virtual ~ResidueFeature();
44  values_from_pose( core::pose::Pose & pose ) const = 0;
45 
46  virtual ResidueFeatureOP clone() const = 0;
47  virtual std::string type() const = 0;
48 
49  core::Size resnum() const;
50 
51  void resnum( core::Size const resnum );
52 
53  void remap( core::id::SequenceMapping const & mapping );
54 
55 private:
57 };
58 
59 } // protocols
60 } // comparative_modeling
61 } // features
62 
63 #endif