You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
849 B
26 lines
849 B
// -*- 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;
|
|
}
|
|
/*}}}*/
|
|
|