libept  0.5.25
expression.h
Go to the documentation of this file.
1 #ifndef EPT_DEBTAGS_EXPRESSION_H
2 #define EPT_DEBTAGS_EXPRESSION_H
3 
8 /*
9  * Copyright (C) 2003,2004,2005,2006,2007 Enrico Zini <enrico@debian.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24  */
25 
26 #include <ept/debtags/tag.h>
27 #include <tagcoll/expression.h>
28 #include <set>
29 
30 namespace tagcoll
31 {
32 
33 template<>
34 bool Expression::operator()(const std::set<ept::debtags::Tag>& tags) const;
35 
36 template<>
37 inline bool Expression::operator()(const std::set<ept::debtags::Facet>& tags) const;
38 
39 };
40 
41 #endif
42 // vim:set ts=4 sw=4:
Debtags facets and tags.
Definition: debtags.h:43