]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/configuration.h
* Install-Reason -> Auto-Installed in pkgstates
[apt.git] / apt-pkg / contrib / configuration.h
index bc2b0fd15c65f15a114d600f836d6a8c2229119e..0ed8f59d3853fdd11698bde51dff76ed00db03f9 100644 (file)
@@ -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.16 2002/11/11 06:55:50 doogie Exp $
 /* ######################################################################
 
    Configuration Class
@@ -33,6 +33,7 @@
 #endif 
 
 #include <string>
+#include <iostream>
 
 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(std::clog); };
+   void Dump(std::ostream& str);
 
    Configuration(const Item *Root);
    Configuration();