Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DockDesignFilterFactory.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 protocols/protein_interface_design/DockDesignFilterFactory.hh
11 /// @brief
12 /// @author ashworth
13 
14 #ifndef INCLUDED_protocols_protein_interface_design_DockDesignFilterFactory_hh
15 #define INCLUDED_protocols_protein_interface_design_DockDesignFilterFactory_hh
16 
17 // Unit Headers
20 
23 
24 #include <core/pose/Pose.fwd.hh>
25 
26 // Utility Headers
27 #include <utility/pointer/ReferenceCount.hh>
28 #include <utility/tag/Tag.fwd.hh>
29 
30 // c++ headers
31 #include <map>
32 
33 #include <utility/vector1.hh>
34 
35 
36 namespace protocols {
37 namespace protein_interface_design {
38 
40 {
41 public:
42  typedef utility::tag::Tag Tag;
45 
46 public:
48  virtual ~DockDesignFilterFactory();
49 
50  ///@brief add a Filter prototype, using its default type name as the map key
52  ///@brief add a Filter prototype, using an arbitrary type name as the map key
54  ///@brief return new Filter by key lookup in dock_design_filter_map_
56  ///@brief return new Filter by Tag parsing
58  TagPtr const,
61  moves::Movers_map const &,
62  Pose const & );
63 
64 private:
66 
67 };
68 
69 } //namespace protein_interface_design
70 } //namespace protocols
71 
72 #endif