Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LoopsFileLoader.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 protocols/loops/LoopsFileLoader.hh
11 /// @brief
12 /// @author
13 
14 #ifndef INCLUDED_protocols_loops_LoopsFileLoader_HH
15 #define INCLUDED_protocols_loops_LoopsFileLoader_HH
16 
17 //unit headers
19 
20 //project headers
21 #include <basic/resource_manager/ResourceLoader.hh>
22 #include <basic/resource_manager/ResourceOptions.fwd.hh>
23 #include <basic/resource_manager/types.hh>
24 
25 
26 //utility headers
27 #include <utility/pointer/ReferenceCount.hh>
28 
29 //C++ headers
30 #include <istream>
31 
32 namespace protocols {
33 namespace loops {
34 
35 class LoopsFileLoader : public basic::resource_manager::ResourceLoader
36 {
37 public:
39  virtual ~LoopsFileLoader();
40 
41  /// @brief Returns a pointer to a WrappedPrimative< LoopsFileData > object
42  /// which is constructed from the given input stream (istream) which in tern
43  /// originates from a particular data source (given by the name input_tag)
44  virtual
45  utility::pointer::ReferenceCountOP
47  basic::resource_manager::ResourceOptions const & options,
48  basic::resource_manager::LocatorID const & locator_id,
49  std::istream & istream
50  ) const;
51 
52  virtual
53  basic::resource_manager::ResourceOptionsOP
54  default_options() const;
55 
56 };
57 
58 } // namespace loops
59 } // namespace protocols
60 
61 
62 
63 #endif //INCLUDED_protocols_loops_LoopsFileLoader_HH