Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ResidueLoader.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 // :noTabs=false:tabSize=4:indentSize=4:
4 //
5 // (c) Copyright Rosetta Commons Member Institutions.
6 // (c) This file is part of the Rosetta software suite and is made available under license.
7 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
8 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
9 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
10 
11 /// @file core/chemical/ResidueLoader.fwd.hh
12 /// @brief headers for the Residue Loader
13 /// @author Sam DeLuca
14 
15 #ifndef INCLUDED_core_chemical_ResidueLoader_hh
16 #define INCLUDED_core_chemical_ResidueLoader_hh
17 
19 #include <basic/resource_manager/ResourceLoader.hh>
20 #include <basic/resource_manager/ResourceOptions.fwd.hh>
21 #include <basic/resource_manager/types.hh>
22 
23 //utility headers
24 #include <utility/pointer/ReferenceCount.hh>
25 
26 //C++ headers
27 #include <istream>
28 
29 namespace core {
30 namespace chemical {
31 
32 class ResidueLoader : public basic::resource_manager::ResourceLoader
33 {
34 public:
36  virtual ~ResidueLoader() {}
37 
38  ///@brief returns a pointer to a ResidueType object originated from the data_source specified to the ResourceManager
39  virtual
40  utility::pointer::ReferenceCountOP
42  basic::resource_manager::ResourceOptions const & options,
43  basic::resource_manager::LocatorID const & locator_id,
44  std::istream & istream
45  ) const;
46 
47  virtual
48  basic::resource_manager::ResourceOptionsOP
49  default_options() const;
50 
51 };
52 
53 }
54 }
55 
56 #endif
57