Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ElectronDensityLoader.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 core/scoring/methods/electron_density/ElectronDensityLoader.hh
11 /// @brief Options for constructing an electron density map
12 /// @author Matthew O'Meara (mattjomeara@gmail.com)
13 
14 #ifndef INCLUDED_core_scoring_electron_density_ElectronDensityLoader_hh
15 #define INCLUDED_core_scoring_electron_density_ElectronDensityLoader_hh
16 
17 
18 // Unit Headers
20 
21 // Project Headers
22 #include <basic/resource_manager/ResourceLoader.hh>
23 #include <basic/resource_manager/ResourceOptions.fwd.hh>
24 #include <basic/resource_manager/types.hh>
25 
26 // Platform Headers
27 #include <core/types.hh>
28 
29 // Utility Headers
30 #include <utility/pointer/ReferenceCount.hh>
31 
32 // C++ Headers
33 #include <string>
34 #include <istream>
35 
36 namespace core {
37 namespace scoring {
38 namespace electron_density {
39 
40 class ElectronDensityLoader : public basic::resource_manager::ResourceLoader
41 {
42 public:
44 
46 
48  ElectronDensityLoader const & src);
49 
50  basic::resource_manager::ResourceOP
52  basic::resource_manager::ResourceOptions const & options,
53  basic::resource_manager::LocatorID const & locator_id,
54  std::istream & istream) const;
55 
56  basic::resource_manager::ResourceOptionsOP
57  default_options() const;
58 
59 };
60 
61 
62 } // namespace
63 } // namespace
64 } // namespace
65 
66 
67 #endif