Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SilentFileOptions.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/io/silent/SilentFileOptions.hh
11 /// @brief Options for constructing a pose from a silent file
12 /// @author Matthew O'Meara (mattjomeara@gmail.com)
13 
14 #ifndef INCLUDED_core_io_silent_SilentFileOptions_hh
15 #define INCLUDED_core_io_silent_SilentFileOptions_hh
16 
17 
18 // Unit Headers
20 #include <basic/resource_manager/ResourceOptions.hh>
21 
22 // Platform Headers
23 #include <core/types.hh>
24 
25 // Utility Headers
26 #include <utility/pointer/ReferenceCount.hh>
27 #include <utility/tag/Tag.fwd.hh>
28 
29 // C++ Headers
30 #include <string>
31 
32 namespace core {
33 namespace io {
34 namespace silent {
35 
36 class SilentFileOptions : public basic::resource_manager::ResourceOptions
37 {
38 public:
40 
42  std::string const & name);
43 
44  /* Undefined commention out to fix PyRosetta build SilentFileOptions(
45  std::string const & name,
46  Real mapreso,
47  Real grid_spacing); */
48 
50 
52  SilentFileOptions const & src);
53 
55  get_silent_struct_type() const;
56 
57  void
59  std::string const & silent_struct_type
60  );
61 
62 public: // The ResourceOptions public interface
63  virtual
64  void
67  );
68 
69  /// @brief The class name for a particular ResourceOptions instance.
70  /// This function allows for better error message delivery
71  virtual
73  type() const { return "SilentFileOptions"; }
74 
75 private:
77 
78 };
79 
80 
81 } // namespace
82 } // namespace
83 } // namespace
84 
85 
86 #endif