X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fmetaproxy%2Ffilter.hpp;h=2d5495ff0b79eff3d5dcd10480cf006d0f572b40;hb=aff78cecdb2c7292899ae15ee8a5fd41accef2b5;hp=691eda4e0e5e1661fae226cae7f5912ac37271c2;hpb=e6d572ef110d14fa55115021505b808620457bd3;p=metaproxy-moved-to-github.git diff --git a/include/metaproxy/filter.hpp b/include/metaproxy/filter.hpp index 691eda4..2d5495f 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) 2005-2012 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 @@ -37,7 +37,12 @@ namespace metaproxy_1 { virtual void process(Package & package) const = 0; /// configuration during filter load - virtual void configure(const xmlNode * ptr, bool test_only); + virtual void configure(const xmlNode * ptr, bool test_only, + const char *path) = 0; + + virtual void start() const; + + virtual void stop() const; }; class FilterException : public std::runtime_error {