Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
VallFragmentGen.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 core/fragment/picking_old/vall/gen/VallFragmentGen.cc
11 /// @brief base class Vall ExtentGenerator
12 /// @author Yih-En Andrew Ban (yab@u.washington.edu)
13 
14 // unit headers
16 
17 #include <utility/vector1.hh>
18 
19 
20 
21 namespace core {
22 namespace fragment {
23 namespace picking_old {
24 namespace vall {
25 namespace gen {
26 
27 
28 /// @brief default constructor
30  Super()
31 {}
32 
33 
34 /// @brief copy constructor
36  Super( rval )
37 {}
38 
39 
40 /// @brief default destructor
42 {}
43 
44 
45 /// @brief copy assignment
47  if ( this != &rval ) {
48  }
49  return *this;
50 }
51 
52 
53 } // namespace gen
54 } // namespace vall
55 } // namespace picking_old
56 } // namespace fragment
57 } // namespace core