cleanup
[fapman] / repository.h
1 /*
2         This file is part of Faster Application Manager.
3
4         Faster Application Manager is free software: you can redistribute it and/or modify
5         it under the terms of the GNU General Public License as published by
6         the Free Software Foundation, either version 3 of the License, or
7         (at your option) any later version.
8
9         Faster Application Manager is distributed in the hope that it will be useful,
10         but WITHOUT ANY WARRANTY; without even the implied warranty of
11         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12         GNU General Public License for more details.
13
14         You should have received a copy of the GNU General Public License
15         along with Faster Application Manager.  If not, see <http://www.gnu.org/licenses/>.
16
17         (C) Heikki Holstila 2010
18 */
19
20 #ifndef REPOSITORY_H
21 #define REPOSITORY_H
22
23 #include <QtCore>
24 class Package;
25 class AAptInterface;
26
27 class Repository
28 {
29 public:
30         Repository();
31
32         void setName(QString n_) { iName=n_; }
33         void setEnabled(bool e_) { iEnabled=e_; }
34
35         QString name() { return iName; }
36         QString url() { return iUrl; }
37         QString dir() { return iDir; }
38         QString dist() { return iDist; }
39         QString components() { return iComponents; }
40         bool enabled() { return iEnabled; }
41         QString toString();
42         QStringList toListFileNames();
43         bool setFromString(QString repo);
44         void set(QString name, QString url, QString dir_dist, QString components, bool enabled);
45         void set(QString name, QString url, QString dir, QString dist, QString components, bool enabled);
46
47 private:
48         QString iName;
49         QString iUrl;
50         QString iDir;
51         QString iDist;
52         QString iComponents;
53         bool iEnabled;
54 };
55
56 #endif // REPOSITORY_H