]> git.saurik.com Git - apt.git/blobdiff - apt-inst/database.cc
Join with aliencode
[apt.git] / apt-inst / database.cc
diff --git a/apt-inst/database.cc b/apt-inst/database.cc
new file mode 100644 (file)
index 0000000..beee692
--- /dev/null
@@ -0,0 +1,30 @@
+// -*- mode: cpp; mode: fold -*-
+// Description                                                         /*{{{*/
+// $Id: database.cc,v 1.2 2001/02/20 07:03:16 jgg Exp $
+/* ######################################################################
+
+   Data Base Abstraction
+   
+   ##################################################################### */
+                                                                       /*}}}*/
+// Include Files                                                       /*{{{*/
+#ifdef __GNUG__
+#pragma implementation "apt-pkg/database.h"
+#endif
+
+#include <apt-pkg/database.h>
+                                                                       /*}}}*/
+
+// DataBase::GetMetaTmp - Get the temp dir                             /*{{{*/
+// ---------------------------------------------------------------------
+/* This re-initializes the meta temporary directory if it hasn't yet 
+   been inited for this cycle. The flag is the emptyness of MetaDir */
+bool pkgDataBase::GetMetaTmp(string &Dir)
+{
+   if (MetaDir.empty() == true)
+      if (InitMetaTmp(MetaDir) == false)
+        return false;
+   Dir = MetaDir;
+   return true;
+}
+                                                                       /*}}}*/