Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SymmDataLoader.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/conformation/symmetry/SymmDataLoader.hh
11 /// @brief load the SymmData data-structure, which is used to configure symmetric poses.
12 /// @author Matthew O'Meara (mattjomeara@gmail.com)
13 
14 #ifndef INCLUDED_core_conformation_symmetry_SymmDataLoader_hh
15 #define INCLUDED_core_conformation_symmetry_SymmDataLoader_hh
16 
17 //unit headers
20 #include <basic/resource_manager/ResourceLoader.hh>
21 
22 //package headers
23 #include <basic/resource_manager/ResourceOptions.hh>
24 #include <basic/resource_manager/types.hh>
25 
26 //utility headers
27 #include <utility/pointer/ReferenceCount.hh>
28 #include <utility/tag/Tag.fwd.hh>
29 
30 //C++ headers
31 #include <istream>
32 
33 namespace core {
34 namespace conformation {
35 namespace symmetry {
36 
37 class SymmDataLoader : public basic::resource_manager::ResourceLoader
38 {
39 public:
40  virtual ~SymmDataLoader() {}
41 
42  virtual
43  basic::resource_manager::ResourceOP
45  basic::resource_manager::ResourceOptions const &,
46  basic::resource_manager::LocatorID const &,
47  std::istream & istream
48  ) const;
49 
50  virtual
51  basic::resource_manager::ResourceOptionsOP
52  default_options() const { return new SymmDataOptions();}
53 };
54 
55 } // namespace
56 } // namespace
57 } // namespace
58 
59 #endif // include guard