Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MatchGrouper.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 // :noTabs=false:tabSize=4:indentSize=4:
4 //
5 // (c) Copyright Rosetta Commons Member Institutions.
6 // (c) This file is part of the Rosetta software suite and is made available under license.
7 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
8 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
9 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
10 
11 /// @file protocols/match/output/MatchProcessor.hh
12 /// @brief
13 /// @author Alex Zanghellini (zanghell@u.washington.edu)
14 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com), porting to mini
15 
16 #ifndef INCLUDED_protocols_match_output_MatchGrouper_hh
17 #define INCLUDED_protocols_match_output_MatchGrouper_hh
18 
19 // Unit headers
21 
22 // Package headers
24 
25 // Project headers
26 #include <core/types.hh>
27 
28 // Utility headers
29 #include <utility/pointer/ReferenceCount.hh>
30 
31 // C++ headers
32 #include <list>
33 
34 namespace protocols {
35 namespace match {
36 namespace output {
37 
39 public:
40  typedef core::Real Real;
41 
42 public:
43  MatchGrouper();
44 
45  virtual
46  ~MatchGrouper();
47 
48  virtual
49  Size
51  match const & m
52  ) = 0;
53 
54  virtual
55  Size
57  match_dspos1 const & m
58  ) = 0;
59 
60  virtual
61  void
62  reset() = 0;
63 
64 };
65 
66 }
67 }
68 }
69 
70 #endif