X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=src%2Frouter_chain.cpp;h=0114fd27e09e477b230aad55d0b3f4831a1bc7a3;hb=f47e8cf4cde2ba5465106e219c803e6424a4f177;hp=7d7e7790ae77e4af0e42b8df1b3f4cd0602d77f4;hpb=b87d59a4add20f61400cfb77a9256dd26c243fb7;p=metaproxy-moved-to-github.git diff --git a/src/router_chain.cpp b/src/router_chain.cpp index 7d7e779..0114fd2 100644 --- a/src/router_chain.cpp +++ b/src/router_chain.cpp @@ -1,4 +1,4 @@ -/* $Id: router_chain.cpp,v 1.4 2006-01-09 13:53:13 adam Exp $ +/* $Id: router_chain.cpp,v 1.5 2006-01-11 11:51:50 adam Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -19,7 +19,7 @@ namespace yp2 }; class RouterChain::Pos : public RoutePos { public: - virtual const filter::Base *move(); + virtual const filter::Base *move(const char *route); virtual RoutePos *clone(); virtual ~Pos(); std::list::const_iterator it; @@ -35,7 +35,7 @@ yp2::RouterChain::~RouterChain() { } -const yp2::filter::Base *yp2::RouterChain::Pos::move() +const yp2::filter::Base *yp2::RouterChain::Pos::move(const char *route) { if (it == m_p->m_filter_list.end()) return 0;