1 | #ifndef _theplu_yat_classifier_ir_retrieve_ |
---|
2 | #define _theplu_yat_classifier_ir_retrieve_ |
---|
3 | |
---|
4 | // $Id: IRRetrieve.h 1743 2009-01-23 14:20:30Z peter $ |
---|
5 | |
---|
6 | /* |
---|
7 | Copyright (C) 2006, 2007 Jari Häkkinen, Peter Johansson |
---|
8 | Copyright (C) 2008 Peter Johansson |
---|
9 | |
---|
10 | This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
11 | |
---|
12 | The yat library is free software; you can redistribute it and/or |
---|
13 | modify it under the terms of the GNU General Public License as |
---|
14 | published by the Free Software Foundation; either version 2 of the |
---|
15 | License, or (at your option) any later version. |
---|
16 | |
---|
17 | The yat library is distributed in the hope that it will be useful, |
---|
18 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
19 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
20 | General Public License for more details. |
---|
21 | |
---|
22 | You should have received a copy of the GNU General Public License |
---|
23 | along with this program; if not, write to the Free Software |
---|
24 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
25 | 02111-1307, USA. |
---|
26 | */ |
---|
27 | |
---|
28 | namespace theplu { |
---|
29 | namespace yat { |
---|
30 | namespace classifier { |
---|
31 | |
---|
32 | class InputRanker; |
---|
33 | |
---|
34 | /// |
---|
35 | /// @brief Interface class for retrieving information from a InputRanker to |
---|
36 | /// build a ConsensusInputRanker. |
---|
37 | /// |
---|
38 | class IRRetrieve |
---|
39 | { |
---|
40 | |
---|
41 | public: |
---|
42 | /// |
---|
43 | /// @brief destructor |
---|
44 | /// |
---|
45 | virtual ~IRRetrieve(void) {}; |
---|
46 | |
---|
47 | /// |
---|
48 | /// @brief operator to retrieve information from @a ranker of |
---|
49 | /// input @a i. |
---|
50 | /// |
---|
51 | virtual double operator()(const InputRanker& ranker, size_t i) const=0; |
---|
52 | }; |
---|
53 | |
---|
54 | |
---|
55 | }}} // of namespace classifier, yat, and theplu |
---|
56 | |
---|
57 | #endif |
---|