Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ResFilter.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/pack/task/operation/ResFilter.hh
11 /// @brief abstract base class that takes a pose and a residue index, and returns true or false
12 /// @author ashworth
13 
14 // do not add any derived classes to this file, unless they are generalized abstract base classes and do not actually 'do any work'
15 
16 #ifndef INCLUDED_core_pack_task_operation_ResFilter_hh
17 #define INCLUDED_core_pack_task_operation_ResFilter_hh
18 
19 // Unit Headers
21 
22 // Project Headers
23 #include <core/pose/Pose.fwd.hh>
24 
25 // Utility Headers
26 #include <utility/pointer/ReferenceCount.hh>
27 #include <utility/tag/Tag.fwd.hh>
28 
29 // C++ Headers
30 // AUTO-REMOVED #include <string>
31 
32 #include <utility/vector1.hh>
33 
34 
35 namespace core {
36 namespace pack {
37 namespace task {
38 namespace operation {
39 
41 {
42 public:
43  typedef pose::Pose Pose;
45 public:
46  virtual bool operator() ( Pose const &, Size ) const = 0;
47  virtual ResFilterOP clone() const = 0;
48  /// @brief parser xml-like tags to set class data/parameters
49  virtual void parse_tag( TagPtr ) {}
50 };
51 
52 // do not add any derived classes to this file, unless they are generalized abstract base classes and do not actually 'do any work'
53 
54 } //namespace operation
55 } //namespace task
56 } //namespace pack
57 } //namespace core
58 
59 #endif