diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:43 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:43 +0000 |
commit | 9c14e3d619e713aefa623986b5bbae81a1d6cc94 (patch) | |
tree | 282c77581b35bbdc46faa400be5d64ec37605507 /apt-pkg/init.h | |
parent | 6c139d6e362f04a1582e8a8f511f8aeab031fecf (diff) |
Config class and source list
Author: jgg
Date: 1998-07-09 05:12:27 GMT
Config class and source list
Diffstat (limited to 'apt-pkg/init.h')
-rw-r--r-- | apt-pkg/init.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/apt-pkg/init.h b/apt-pkg/init.h new file mode 100644 index 000000000..bd03dd10d --- /dev/null +++ b/apt-pkg/init.h @@ -0,0 +1,21 @@ +// -*- mode: cpp; mode: fold -*- +// Description /*{{{*/ +// $Id: init.h,v 1.1 1998/07/09 05:12:27 jgg Exp $ +/* ###################################################################### + + Init - Initialize the package library + + This function must be called to configure the config class before + calling many APT library functions. + + ##################################################################### */ + /*}}}*/ +// Header section: pkglib +#ifndef PKGLIB_INIT_H +#define PKGLIB_INIT_H + +#include <pkglib/configuration.h> + +bool pkglibInitialize(Configuration &Cnf); + +#endif |