X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Ffilter_cql_to_rpn.hpp;h=bb279d68d5b496d534a2286dfbb3e233b30d1ab8;hb=637a685d61a9ff0e3f398a59da426979815c4d68;hp=d1c4de5585c828df2c30edc34537eb2002f8b75f;hpb=d625b10d219f5ece1aa7632e6cff2fcc5fcbd632;p=metaproxy-moved-to-github.git diff --git a/src/filter_cql_to_rpn.hpp b/src/filter_cql_to_rpn.hpp index d1c4de5..bb279d6 100644 --- a/src/filter_cql_to_rpn.hpp +++ b/src/filter_cql_to_rpn.hpp @@ -1,7 +1,22 @@ -/* $Id: filter_cql_to_rpn.hpp,v 1.1 2007-01-12 10:16:21 adam Exp $ - Copyright (c) 2005-2006, Index Data. +/* $Id: filter_cql_to_rpn.hpp,v 1.4 2007-05-09 21:23:09 adam Exp $ + Copyright (c) 2005-2007, Index Data. - See the LICENSE file for details +This file is part of Metaproxy. + +Metaproxy is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Metaproxy 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 General Public License +along with Metaproxy; see the file LICENSE. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. */ #ifndef FILTER_CQL_TO_RPN_HPP @@ -14,16 +29,15 @@ namespace metaproxy_1 { namespace filter { - class CQL_to_RPN : public Base { - class Rep; + class CQLtoRPN : public Base { + class Impl; + boost::scoped_ptr m_p; public: - CQL_to_RPN(); - ~CQL_to_RPN(); + CQLtoRPN(); + ~CQLtoRPN(); void process(metaproxy_1::Package & package) const; void configure(const xmlNode * ptr); private: - class Impl; - boost::scoped_ptr m_p; }; } }