]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/configuration.h
add basic tests for GetTempDir()
[apt.git] / apt-pkg / contrib / configuration.h
index 4c2e750413852e32586b73410452d78bded66d04..8e09ea0a698fd96055494c801cde8c2d876cae87 100644 (file)
@@ -94,6 +94,7 @@ class Configuration
 
    // clear a whole tree
    void Clear(const std::string &Name);
+   void Clear();
 
    // remove a certain value from a list (e.g. the list of "APT::Keep-Fds")
    void Clear(std::string const &List, std::string const &Value);
@@ -103,6 +104,8 @@ class Configuration
 
    inline void Dump() { Dump(std::clog); };
    void Dump(std::ostream& str);
+   void Dump(std::ostream& str, char const * const root,
+            char const * const format, bool const emptyValue);
 
    Configuration(const Item *Root);
    Configuration();