File: functionselectors.hpp

package info (click to toggle)
cupt 2.10.4%2Bnmu2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,144 kB
  • sloc: cpp: 23,642; perl: 1,599; sh: 40; makefile: 19
file content (52 lines) | stat: -rw-r--r-- 1,871 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**************************************************************************
*   Copyright (C) 2012 by Eugene V. Lyubimkin                             *
*                                                                         *
*   This program is free software; you can redistribute it and/or modify  *
*   it under the terms of the GNU General Public License                  *
*   (version 3 or above) as published by the Free Software Foundation.    *
*                                                                         *
*   This program is distributed in the hope that it will be useful,       *
*   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
*   GNU General Public License for more details.                          *
*                                                                         *
*   You should have received a copy of the GNU GPL                        *
*   along with this program; if not, write to the                         *
*   Free Software Foundation, Inc.,                                       *
*   51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA               *
**************************************************************************/
#ifndef CUPT_CONSOLE_FUNCTION_SELECTORS_SEEN
#define CUPT_CONSOLE_FUNCTION_SELECTORS_SEEN

#include <memory>
#include <list>

#include "common.hpp"

using std::unique_ptr;
using std::list;

class FunctionalSelector
{
	struct Data;
	Data* __data;
 public:
	class Query
	{
	 protected:
		Query();
	 public:
		virtual ~Query();
	};

	FunctionalSelector(const Cache&);
	~FunctionalSelector();

	static unique_ptr< Query > parseQuery(const string&, bool);

	list< const Version* > selectAllVersions(const Query&);
	list< const Version* > selectBestVersions(const Query&);
};

#endif