Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SilentFileLoaderCreator.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 
11 /// @file core/io/silent/SilentFileLoaderCreator.fwd.hh
12 /// @brief Creator for loader for constructing a pose from a silent file
13 /// @author Matthew O'Meara (mattjomeara@gmail.com)
14 
15 #ifndef INCLUDED_core_io_silent_SilentFileLoaderCreator_hh
16 #define INCLUDED_core_io_silent_SilentFileLoaderCreator_hh
17 
18 // Unit Headers
19 #include <basic/resource_manager/ResourceLoaderCreator.hh>
21 
22 #include <core/types.hh>
23 #include <utility/vector1.hh>
24 #include <string>
25 
26 namespace core {
27 namespace io {
28 namespace silent {
29 
30 /// @brief creator for the SilentFileLoader class
31 class SilentFileLoaderCreator : public basic::resource_manager::ResourceLoaderCreator
32 {
33 public:
35  virtual ~SilentFileLoaderCreator();
36 
37  virtual basic::resource_manager::ResourceLoaderOP create_resource_loader() const;
38  virtual std::string loader_type() const;
39 };
40 
41 } //namespace
42 } //namespace
43 } //namespace
44 
45 #endif