X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Ffilter_z3950_client.hpp;h=b55dd379a6c0009a05000b8d5d9d1df03ebe3865;hb=2925d7556b673d7557603adc7f5b61057de438cf;hp=4a6f161bb94866eb00f1b75d2a08174d50603591;hpb=ced440c14eaf1e9408f994ef1e7be2deb8a7db0b;p=metaproxy-moved-to-github.git diff --git a/src/filter_z3950_client.hpp b/src/filter_z3950_client.hpp index 4a6f161..b55dd37 100644 --- a/src/filter_z3950_client.hpp +++ b/src/filter_z3950_client.hpp @@ -1,4 +1,4 @@ -/* $Id: filter_z3950_client.hpp,v 1.1 2005-10-16 16:05:44 adam Exp $ +/* $Id: filter_z3950_client.hpp,v 1.3 2005-10-29 22:23:36 marc Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -9,20 +9,24 @@ #include #include +#include #include "filter.hpp" namespace yp2 { namespace filter { class Z3950Client : public Base { - class Pimpl; + class Rep; class Assoc; public: ~Z3950Client(); Z3950Client(); void process(yp2::Package & package) const; + const std::string type() const { + return "Z3950Client"; + }; private: - Pimpl *m_p; + boost::scoped_ptr m_p; }; } }