Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
VallFragmentGen.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/fragment/picking_old/vall/gen/VallFragmentGen.hh
11 /// @brief base class Vall ExtentGenerator
12 /// @author Yih-En Andrew Ban (yab@u.washington.edu)
13 
14 #ifndef INCLUDED_core_fragment_picking_old_vall_gen_VallFragmentGen_hh
15 #define INCLUDED_core_fragment_picking_old_vall_gen_VallFragmentGen_hh
16 
17 // unit headers
19 
20 // type headers
21 #include <core/types.hh>
22 
23 // project headers
26 
27 // utility headers
28 #include <utility/pointer/ReferenceCount.hh>
29 
30 #include <utility/vector1.hh>
31 
32 
33 
34 namespace core {
35 namespace fragment {
36 namespace picking_old {
37 namespace vall {
38 namespace gen {
39 
40 
41 /// @brief base class Vall ExtentGenerator
43 
44 
45 private: // typedefs
46 
47 
49 
50 
51 public: // typedefs
52 
53 
54  typedef core::Size Size;
55 
56 
57 public: // concept typedefs
58 
59 
60  /// @brief typedef for ExtentGenerator concept
62 
63 
64  /// @brief typedef for ExtentGenerator concept
66 
67 
68 public: // concept translation typedefs
69 
70 
72 
73 
74 public: // construct/destruct
75 
76 
77  /// @brief default constructor
79 
80 
81  /// @brief copy constructor
82  VallFragmentGen( VallFragmentGen const & rval );
83 
84 
85  /// @brief default destructor
86  virtual
88 
89 
90 public: // copy assignment
91 
92 
93  /// @brief copy assignment
94  VallFragmentGen & operator =( VallFragmentGen const & rval );
95 
96 
97 public: // virtual constructors
98 
99 
100  /// @brief clone this object
101  virtual
102  VallFragmentGenOP clone() const = 0;
103 
104 
105 public: // extent generation
106 
107 
108  /// @brief return the desired fragment extent
109  /// @return valid (true) extent if extent will be evaluated, invalid
110  /// (false) extent otherwise
111  virtual
112  Extent operator ()( VallResidueIterator extent_begin, VallResidueIterator section_end ) const = 0;
113 
114 
115 };
116 
117 
118 } // namespace gen
119 } // namespace vall
120 } // namespace picking_old
121 } // namespace fragment
122 } // namespace core
123 
124 #endif /* INCLUDED_core_fragment_picking_old_vall_gen_VallFragmentGen_HH */