blob: dbb16b7f8bcca688a494e0b19aa9bce2d570d9e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// load_pkgview.h -*-c++-*-
//
#ifndef LOAD_PKGVIEW_H
#define LOAD_PKGVIEW_H
#include "pkg_view.h"
/** \brief Lets a package-view layout be loaded from a config file
*
*
* Lets a package-view layout be loaded from a config file. It's not as
* nice as it could be, but it's enough for real hardcore people like me to
* customize things.
*
* \file load_pkgview.h
*/
// The caller should delete the returned list, of course.
std::list<package_view_item> *load_pkgview(std::string cfggroup);
#endif
|