From: Mike Taylor Date: Wed, 18 Jan 2006 11:11:33 +0000 (+0000) Subject: New private methods. X-Git-Tag: YP2.0.0.2~20 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=18c9d3c7eaaba7ecd81a9b5ae3519fea9ca1dcc0;p=metaproxy-moved-to-github.git New private methods. It's insane that I have to put these into a header file. They are defined and used only in "filter_auth_simple.cpp", and make no difference whatsoever to the physical layout of the object -- why should I tell the world about them? --- diff --git a/src/filter_auth_simple.hpp b/src/filter_auth_simple.hpp index d7d235e..f359598 100644 --- a/src/filter_auth_simple.hpp +++ b/src/filter_auth_simple.hpp @@ -1,4 +1,4 @@ -/* $Id: filter_auth_simple.hpp,v 1.3 2006-01-17 17:24:23 mike Exp $ +/* $Id: filter_auth_simple.hpp,v 1.4 2006-01-18 11:11:33 mike Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -22,6 +22,8 @@ namespace yp2 { void configure(const xmlNode * ptr); void process(yp2::Package & package) const; private: + void config_userRegister(std::string filename); + void config_targetRegister(std::string filename); void process_init(yp2::Package & package) const; void process_search(yp2::Package & package) const; void process_scan(yp2::Package & package) const;