diff options
Diffstat (limited to 'apt-inst/database.cc')
-rw-r--r-- | apt-inst/database.cc | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/apt-inst/database.cc b/apt-inst/database.cc deleted file mode 100644 index a5020f3d7..000000000 --- a/apt-inst/database.cc +++ /dev/null @@ -1,26 +0,0 @@ -// -*- mode: cpp; mode: fold -*- -// Description /*{{{*/ -// $Id: database.cc,v 1.2 2001/02/20 07:03:16 jgg Exp $ -/* ###################################################################### - - Data Base Abstraction - - ##################################################################### */ - /*}}}*/ -// Include Files /*{{{*/ -#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; -} - /*}}}*/ |