Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ExtendedPoseInputStream.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 James Thompson
13 
14 // libRosetta headers
15 
16 #ifndef INCLUDED_core_import_pose_pose_stream_ExtendedPoseInputStream_HH
17 #define INCLUDED_core_import_pose_pose_stream_ExtendedPoseInputStream_HH
18 
20 #include <core/pose/Pose.fwd.hh>
21 
23 
24 // C++ headers
25 #include <string>
26 
27 #include <utility/vector1.hh>
28 
29 
30 namespace core {
31 namespace import_pose {
32 namespace pose_stream {
33 
35 
36 public:
38  : seq_( sequence ), ntimes_( ntimes ), current_n_( 1 ) {}
40 
41  virtual bool has_another_pose();
42 
43  virtual void reset();
44 
45  virtual void fill_pose(
46  core::pose::Pose & pose,
47  core::chemical::ResidueTypeSet const & residue_set
48  );
49  virtual void fill_pose( core::pose::Pose& );
50 
51 private:
54 }; // ExtendedPoseInputStream
55 
56 } // pose_stream
57 } // import_pose
58 } // core
59 
60 #endif