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
toolbox
task_operations
InterfaceTaskOperation.cc
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 InterfaceTaskOperation.cc
11
/// @brief Base class for TaskOperations that will work with docking to define an interface
12
/// @author Brian Weitzner (brian.weitzner@jhu.edu)
13
14
#include <
protocols/toolbox/task_operations/InterfaceTaskOperation.hh
>
15
16
#include <utility/vector1.hh>
17
18
19
namespace
protocols {
20
namespace
toolbox {
21
namespace
task_operations {
22
23
//using namespace core;
24
25
InterfaceTaskOperation::~InterfaceTaskOperation
(){}
26
27
InterfaceTaskOperation::InterfaceTaskOperation
() :
parent
()
28
{
29
movable_jumps_
= utility::vector1_int();
30
movable_jumps_
.push_back( 1 );
31
}
32
InterfaceTaskOperation::InterfaceTaskOperation
(
InterfaceTaskOperation
const
& old_instance ) :
33
//utility::pointer::ReferenceCount(),
34
parent
( old_instance )
35
{
36
movable_jumps_
= old_instance.
movable_jumps_
;
37
}
38
39
void
InterfaceTaskOperation::add_movable_jump
(
int
const
additional_jump ) {
40
41
movable_jumps_
.push_back( additional_jump );
42
}
43
44
void
InterfaceTaskOperation::set_movable_jumps
( utility::vector1_int
const
& movable_jumps ) {
45
movable_jumps_
=
movable_jumps
;
46
}
47
48
utility::vector1_int
const
&
49
InterfaceTaskOperation::movable_jumps
()
const
{
50
return
movable_jumps_
;
51
}
52
53
}
54
}
55
}
Generated on Sat Jun 1 2013 12:23:04 for Rosetta 3.5 by
1.8.4