Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SingleState.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 SingleState.hh
11 /// @brief
12 /// @author ashworth
13 
14 #ifndef INCLUDED_protocols_multistate_design_SingleState_hh
15 #define INCLUDED_protocols_multistate_design_SingleState_hh
16 
18 
19 #include <core/types.hh>
20 #include <core/pose/Pose.fwd.hh>
22 
23 // Utility Headers
24 #include <utility/pointer/ReferenceCount.hh>
25 
26 #include <utility/vector1.hh>
27 
28 #ifdef WIN32
29  #include <core/pose/Pose.hh>
30 #endif
31 
32 
33 namespace protocols {
34 namespace multistate_design {
35 
37 
38 public:
39  SingleState();
40  virtual ~SingleState();
41 
42  SingleState( core::pose::Pose const & pose, bool is_positive );
43  SingleState( SingleState const & other );
44 
45  virtual void set_best_score( core::Real score ) { best_score_ = score; }
46  virtual core::Real best_score() const { return best_score_; }
47  virtual bool is_positive_state() const { return is_positive_state_; }
48 
49  virtual core::pose::Pose const & pose() const;
50  virtual core::pose::Pose & nonconst_pose();
51 
54 
55 private:
60 };
61 
62 } // namespace multistate_design
63 } // namespace protocols
64 
65 #endif