Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MultiStateEntity.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 MultiStateEntity.hh
11 /// @brief
12 /// @author Colin A. Smith
13 
14 #ifndef INCLUDED_protocols_multistate_design_MultiStateEntity_hh
15 #define INCLUDED_protocols_multistate_design_MultiStateEntity_hh
16 
18 // AUTO-REMOVED #include <protocols/multistate_design/SingleStateEntityData.hh>
19 
20 #include <core/types.hh>
21 // AUTO-REMOVED #include <basic/MetricValue.hh>
22 
23 // Utility Headers
24 #include <utility/pointer/ReferenceCount.hh>
25 
26 // ObjexxFCL Headers
27 // AUTO-REMOVED #include <ObjexxFCL/format.hh>
28 
29 // C++ Headers
30 #include <map>
31 
33 #include <utility/vector1.hh>
34 
35 
36 
37 namespace protocols {
38 namespace multistate_design {
39 
40 class MultiStateEntity : public protocols::genetic_algorithm::Entity {
41 
42 public:
45 
47  MultiStateEntity( MultiStateEntity const & entity );
48  virtual ~MultiStateEntity();
49 
50  virtual EntityOP clone() const;
51 
52  virtual void show( std::ostream & os ) const;
53 
54  virtual void write_checkpoint( std::ostream & os ) const;
55  virtual bool read_checkpoint( std::istream & is );
56 
59 
60 private:
62 };
63 
64 
65 } // namespace multistate_design
66 } // namespace protocols
67 
68 #endif