Log filter can be configured to write to a given file using 'filename'
[metaproxy-moved-to-github.git] / src / router_chain.hpp
index a59afde..94ec94c 100644 (file)
@@ -1,7 +1,7 @@
-/* $Id: router_chain.hpp,v 1.4 2006-01-09 13:43:59 adam Exp $
-   Copyright (c) 2005, Index Data.
+/* $Id: router_chain.hpp,v 1.7 2006-06-10 14:29:12 adam Exp $
+   Copyright (c) 2005-2006, Index Data.
 
-%LICENSE%
+   See the LICENSE file for details
  */
 
 #ifndef ROUTER_CHAIN_HPP
 #include <boost/scoped_ptr.hpp>
 #include <stdexcept>
 
-namespace yp2 {
+namespace metaproxy_1 {
     class RouterChain : public Router {
         class Rep;
         class Pos;
     public:
         RouterChain();
         virtual ~RouterChain();
-#if ROUTE_POS
         virtual RoutePos *createpos() const;
-#else
-        virtual const filter::Base *move(const filter::Base *filter,
-                                         const Package *package) const;
-#endif
         RouterChain & append(const filter::Base &filter);
     private:
         boost::scoped_ptr<Rep> m_p;