Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 546 Bytes

ssufeaturemanager.h

File metadata and controls

30 lines (23 loc) · 546 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
* @file ssufeaturemanager.h
* @copyright 2013 Jolla Ltd.
* @author Bernd Wachter <bwachter@lart.info>
* @date 2013
*/
#ifndef _SSUFEATUREMANAGER_H
#define _SSUFEATUREMANAGER_H
#include <QObject>
#include <QHash>
#include <QStringList>
Nov 17, 2013
Nov 17, 2013
15
#include "ssu.h"
16
17
18
19
20
21
#include "ssusettings.h"
class SsuFeatureManager: public QObject {
Q_OBJECT
public:
Nov 17, 2013
Nov 17, 2013
22
23
24
SsuFeatureManager();
QStringList repos(bool rndRepo, int filter=Ssu::NoFilter);
QString url(QString repo, bool rndRepo);
25
26
27
28
29
30
private:
SsuSettings *featureSettings;
};
#endif