Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LazySilentFilePoseInputStream.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/LazySilentFilePoseInputStream.hh
11 /// @brief
12 /// @author James Thompson
13 
14 #ifndef INCLUDED_core_import_pose_pose_stream_LazySilentFilePoseInputStream_HH
15 #define INCLUDED_core_import_pose_pose_stream_LazySilentFilePoseInputStream_HH
16 
19 
20 #include <core/types.hh>
21 #include <core/pose/Pose.fwd.hh>
26 #include <utility/file/FileName.hh>
27 
28 #include <string>
29 
30 #include <utility/vector1.hh>
31 
32 
33 namespace core {
34 namespace import_pose {
35 namespace pose_stream {
36 
40 
41 public:
43  filenames_ = fns;
44  current_filename_ = filenames_.begin();
45 
48  }
49 
51  reset();
52  }
54 
56 
57 public:
58  virtual bool has_another_pose();
59 
60  virtual void fill_pose(
61  core::pose::Pose & pose,
62  core::chemical::ResidueTypeSet const & residue_set
63  );
64  virtual void fill_pose( core::pose::Pose& );
65 
66  virtual void reset();
67 
68 private:
71 
74 }; // LazySilentFilePoseInputStream
75 
76 } // pose_stream
77 } // import_pose
78 } // core
79 
80 #endif