Rosetta 3.5
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
core
pack
task
operation
ResLvlTaskOperationCreator.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/methods/ResLvlTaskOperationCreator.hh
11
/// @brief Declaration of the base class for ResLvlTaskOperation factory registration and creation
12
/// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13
/// @author ashworth
14
15
16
#ifndef INCLUDED_core_pack_task_operation_ResLvlTaskOperationCreator_hh
17
#define INCLUDED_core_pack_task_operation_ResLvlTaskOperationCreator_hh
18
19
// Unit headers
20
#include <
core/pack/task/operation/ResLvlTaskOperationCreator.fwd.hh
>
21
22
// Package headers
23
#include <
core/pack/task/operation/ResLvlTaskOperation.fwd.hh
>
24
25
// Utility headers
26
#include <utility/pointer/ReferenceCount.hh>
27
28
29
namespace
core {
30
namespace
pack {
31
namespace
task {
32
namespace
operation {
33
34
/// @brief The ResLvlTaskOperationCreator class's responsibilities are to create
35
/// on demand a new ResLvlTaskOperation class.
36
/// The ResLvlTaskOperationCreator must register itself with the ResLvlTaskOperationFactory
37
/// at load time (before main() begins) so that the ResLvlTaskOperationFactory is ready
38
/// to start creating ResLvlTaskOperations by the time any protocol
39
/// requests one.
40
class
ResLvlTaskOperationCreator
:
public
utility::pointer::ReferenceCount
41
{
42
public
:
43
virtual
~ResLvlTaskOperationCreator
() {}
44
45
/// @brief Instantiate a new ResLvlTaskOperation
46
virtual
47
ResLvlTaskOperationOP
48
create_res_level_task_operation
()
const
= 0;
49
50
virtual
std::string
keyname
()
const
= 0;
51
};
52
53
}
54
}
55
}
56
}
57
58
#endif
Generated on Sat Jun 1 2013 11:33:51 for Rosetta 3.5 by
1.8.4