0.7.1
[fapman] / dpkginterface.h
1 #ifndef DPKGINTERFACE_H
2 #define DPKGINTERFACE_H
3
4 #include <QObject>
5
6 class DpkgInterface : public QObject
7 {
8     Q_OBJECT
9 public:
10     explicit DpkgInterface(QObject *parent = 0);
11         virtual ~DpkgInterface();
12
13         bool loadDebFiles(QStringList files_);
14
15
16 private:
17         DpkgInterface(const DpkgInterface& old);
18         DpkgInterface operator= (const DpkgInterface& old);
19
20 };
21
22 #endif // DPKGINTERFACE_H