Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MetaPoseInputStream.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 src/core/import_pose/pose_stream/MetaPoseInputStream.hh
11 /// @brief
12 /// @author James Thompson
13 
14 // libRosetta headers
15 
16 #ifndef INCLUDED_core_import_pose_pose_stream_MetaPoseInputStream_HH
17 #define INCLUDED_core_import_pose_pose_stream_MetaPoseInputStream_HH
18 
19 #include <core/types.hh>
21 #include <core/pose/Pose.fwd.hh>
22 
25 
26 #include <utility/vector1_bool.hh>
27 
28 #include <utility/vector1.hh>
29 
30 
31 namespace core {
32 namespace import_pose {
33 namespace pose_stream {
34 
36 
37 public:
39 
41 
43 
45 
46  virtual bool has_another_pose();
47 
48  virtual void reset();
49 
50  virtual void fill_pose(
51  core::pose::Pose & pose,
52  core::chemical::ResidueTypeSet const & residue_set
53  );
54  virtual void fill_pose( core::pose::Pose& );
55 
56 private:
60 }; // MetaPoseInputStream
61 
62 } // pose_stream
63 } // import_pose
64 } // core
65 
66 #endif