Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 
15 
16 #include <utility/vector1.hh>
17 
18 
19 namespace protocols {
20 namespace toolbox {
21 namespace task_operations {
22 
23 //using namespace core;
24 
26 
28 {
29  movable_jumps_ = utility::vector1_int();
30  movable_jumps_.push_back( 1 );
31 }
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 ) {
46 }
47 
48 utility::vector1_int const &
50  return movable_jumps_;
51 }
52 
53 }
54 }
55 }