691f8f2daf1450536b4841bea732835ab05d5bb6
[metaproxy-moved-to-github.git] / src / filter_cql_to_rpn.hpp
1 /* $Id: filter_cql_to_rpn.hpp,v 1.2 2007-01-15 15:07:59 marc Exp $
2    Copyright (c) 2005-2006, Index Data.
3
4    See the LICENSE file for details
5  */
6
7 #ifndef FILTER_CQL_TO_RPN_HPP
8 #define FILTER_CQL_TO_RPN_HPP
9
10 #include <boost/scoped_ptr.hpp>
11 #include <boost/shared_ptr.hpp>
12
13 #include "filter.hpp"
14
15 namespace metaproxy_1 {
16     namespace filter {
17         class CQLtoRPN : public Base {
18             class Impl;
19             boost::scoped_ptr<Impl> m_p;
20         public:
21             CQLtoRPN();
22             ~CQLtoRPN();
23             void process(metaproxy_1::Package & package) const;
24             void configure(const xmlNode * ptr);
25         private:
26         };
27     }
28 }
29
30 extern "C" {
31     extern struct metaproxy_1_filter_struct metaproxy_1_filter_cql_to_rpn;
32 }
33
34 #endif
35 /*
36  * Local variables:
37  * c-basic-offset: 4
38  * indent-tabs-mode: nil
39  * c-file-style: "stroustrup"
40  * End:
41  * vim: shiftwidth=4 tabstop=8 expandtab
42  */