repoindex/lib/alpm/alpmpackage.h

21 lines
363 B
C++

#ifndef PACKAGEMANAGEMENT_ALPMPACKAGE_H
#define PACKAGEMANAGEMENT_ALPMPACKAGE_H
#include "./package.h"
namespace RepoIndex {
class AlpmDatabase;
class AlpmPackage : public Package
{
public:
AlpmPackage(AlpmDatabase *repository);
AlpmPackage(const QString &packageFile);
};
} // namespace PackageManagement
#endif // PACKAGEMANAGEMENT_ALPMPACKAGE_H