X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=blobdiff_plain;f=include%2Fmetaproxy%2Ffilter.hpp;h=5cf79f358aae9ee8b3f32851a3979197619112e6;hb=af17ce65db77bb9b783c44decd5976b4bb0f50dd;hp=0fbd0199135c85934c4c5a04577199c630b912cf;hpb=74d5524719194de5dc96abd552562fa473088677;p=metaproxy-moved-to-github.git diff --git a/include/metaproxy/filter.hpp b/include/metaproxy/filter.hpp index 0fbd019..5cf79f3 100644 --- a/include/metaproxy/filter.hpp +++ b/include/metaproxy/filter.hpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2010 Index Data + Copyright (C) Index Data 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 @@ -32,14 +32,17 @@ namespace metaproxy_1 { class Base { public: virtual ~Base(){}; - + ///sends Package off to next Filter, returns altered Package virtual void process(Package & package) const = 0; - /// configuration during filter load - virtual void configure(const xmlNode * ptr, bool test_only); + /// configuration during filter load + virtual void configure(const xmlNode * ptr, bool test_only, + const char *path) = 0; virtual void start() const; + + virtual void stop(int signo) const; }; class FilterException : public std::runtime_error {