blob: 7f2fc12dd383ccb119a78b4d340b5810520edbdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// load_pkgview.h -*-c++-*-
//
// 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.
#ifndef LOAD_PKGVIEW_H
#define LOAD_PKGVIEW_H
#include "pkg_view.h"
// The caller should delete the returned list, of course.
std::list<package_view_item> *load_pkgview(std::string cfggroup);
#endif
|