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
protocols
outputter
ResFileOutputter.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=1 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/outputter/ResFileOutputter.hh
11
/// @brief Saves a resfile that is generated by applying the input task operations to the pose
12
/// @author Ken Jung
13
14
#ifndef INCLUDED_protocols_outputter_ResFileOutputter_hh
15
#define INCLUDED_protocols_outputter_ResFileOutputter_hh
16
17
// Unit Headers
18
#include <
protocols/outputter/ResFileOutputter.fwd.hh
>
19
#include <
protocols/outputter/FormatStringOutputter.hh
>
20
21
#include <
core/pack/task/TaskFactory.fwd.hh
>
22
23
namespace
protocols {
24
namespace
outputter {
25
26
27
#ifdef USELUA
28
void
lregister_ResFileOutputter( lua_State * lstate );
29
#endif
30
31
class
ResFileOutputter
:
public
FormatStringOutputter
{
32
33
public
:
34
ResFileOutputter
();
35
virtual
~ResFileOutputter
();
36
37
virtual
void
write
(
Pose
& p );
38
39
#ifdef USELUA
40
void
parse_def( utility::lua::LuaObject
const
& def,
41
utility::lua::LuaObject
const
& tasks );
42
virtual
void
lregister( lua_State * lstate );
43
#endif
44
45
// factory functions
46
OutputterSP
create
();
47
static
std::string
name
() {
48
return
"ResFileOutputter"
;
49
}
50
51
private
:
52
core::pack::task::TaskFactoryCOP
task_factory_
;
53
bool
designable_only_
;
54
std::string
resfile_general_property_
;
55
56
57
};
// end
58
59
}
// outputter
60
}
// protocols
61
62
63
#endif //INCLUDED_protocols_outputter_ResFileOutputter_hh
Generated on Sat Jun 1 2013 12:02:18 for Rosetta 3.5 by
1.8.4