From ff2a211aec45ac8c63ad60d75714da78d77ef69b Mon Sep 17 00:00:00 2001 From: Arch Librarian Date: Mon, 20 Sep 2004 16:59:40 +0000 Subject: _config->Dump is now inlined, and calls Dump(clog). Du... Author: doogie Date: 2002-11-09 17:11:25 GMT _config->Dump is now inlined, and calls Dump(clog). Dump(ostream&) is now exported. Fixed apt-config dump sending to stderr. --- apt-pkg/contrib/configuration.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'apt-pkg/contrib/configuration.h') diff --git a/apt-pkg/contrib/configuration.h b/apt-pkg/contrib/configuration.h index bc2b0fd15..418e210bc 100644 --- a/apt-pkg/contrib/configuration.h +++ b/apt-pkg/contrib/configuration.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: configuration.h,v 1.14 2001/05/07 05:06:52 jgg Exp $ +// $Id: configuration.h,v 1.15 2002/11/09 17:11:25 doogie Exp $ /* ###################################################################### Configuration Class @@ -33,6 +33,7 @@ #endif #include +#include using std::string; @@ -90,7 +91,8 @@ class Configuration inline const Item *Tree(const char *Name) const {return Lookup(Name);}; - void Dump(); + inline void Dump() { Dump(clog); }; + void Dump(ostream& str); Configuration(const Item *Root); Configuration(); -- cgit v1.2.3