Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ResLvlTaskOperation.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/ResLvlTaskOperation.hh
11 /// @brief Class that performs an operation on ResidueLevelTask,
12 /// usually by a PackerTaskFactory right after the task's construction.
13 /// @author ashworth
14 
15 // only generalized base classes go here. ResLvlTaskOperations that actually do things do not belong here.
16 
17 #ifndef INCLUDED_core_pack_task_operation_ResLvlTaskOperation_hh
18 #define INCLUDED_core_pack_task_operation_ResLvlTaskOperation_hh
19 
20 // Unit Headers
22 // AUTO-REMOVED #include <core/pack/task/operation/ResFilter.hh>
23 
24 // Project Headers
26 
27 // Utility Headers
28 #include <utility/pointer/ReferenceCount.hh>
29 #include <utility/tag/Tag.fwd.hh>
30 
31 // C++ Headers
32 // AUTO-REMOVED #include <string>
33 
34 #include <utility/vector1.hh>
35 
36 #ifdef WIN32
37  #include <utility/tag/Tag.hh>
38 #endif
39 
40 namespace core {
41 namespace pack {
42 namespace task {
43 namespace operation {
44 
46 {
47 public:
49 public:
50  /// @brief Create another task operation of the type matching the most-derived
51  /// version of the class.
52  virtual ResLvlTaskOperationOP clone() const = 0;
53 
54  /// @brief Change a ResidueLevelTask in some way. The input pose is the one to which the input
55  /// task will be later applied.
56  virtual void apply( ResidueLevelTask & ) const = 0;
57 
58  /// @brief parser xml-like tags to set class data/parameters
59  virtual void parse_tag( TagPtr ) {}
60 };
61 
62 // only generalized base classes go here. ResLvlTaskOperations that actually do things do not belong here.
63 
64 } //namespace operation
65 } //namespace task
66 } //namespace pack
67 } //namespace core
68 
69 #endif