Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
util.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/moves/util.hh
11 /// @author Christopher Miles (cmiles@uw.edu)
12 
13 #ifndef INCLUDED_PROTOCOLS_MOVES_UTIL_HH
14 #define INCLUDED_PROTOCOLS_MOVES_UTIL_HH
15 
16 // Utility headers
17 #include <utility/tag/Tag.fwd.hh>
18 
19 // Project headers
20 // AUTO-REMOVED #include <protocols/filters/Filter.hh>
21 
22 // Package headers
23 // AUTO-REMOVED #include <protocols/moves/Mover.hh>
24 // AUTO-REMOVED #include <protocols/moves/DataMap.fwd.hh>
25 
26 #include <core/types.hh>
29 #include <utility/vector1.hh>
30 
31 
32 namespace protocols {
33 namespace moves {
34 
35 /// @brief Searches <movers> for the named mover, returning it if it exists,
36 /// otherwise halts execution with an error message.
38  const utility::tag::TagPtr tag,
39  const protocols::moves::Movers_map& movers);
40 
41 /// @brief Searches <filters> for the named filter, returning it if it exists,
42 /// otherwise halts execution with an error message.
44  const utility::tag::TagPtr tag,
45  const protocols::filters::Filters_map& filters);
46 
47 } // namespace moves
48 } // namespace protocols
49 
50 #endif // PROTOCOLS_MOVES_UTIL_HH_