##// END OF EJS Templates
Fixed bug 388...
Fixed bug 388 Added cassini FGM download from Time table files. Fixed smal issue on export function. Some Work on QLop database.

File last commit:

r14:0e9217f77498 default
r14:0e9217f77498 default
Show More
qlopdatabase.h
38 lines | 980 B | text/x-c | CLexer
QLop dataBase started, WIP.
r12 #ifndef QLOPDATABASE_H
#define QLOPDATABASE_H
#include <QObject>
#include <qlopdata.h>
#include <QList>
Fixed bug #388...
r14 #include <qlopservice.h>
QLop dataBase started, WIP.
r12
Fixed bug #388...
r14 class QLopDataBaseViewer;
class QLopDataBase : public QLopService
QLop dataBase started, WIP.
r12 {
Q_OBJECT
Fixed bug #388...
r14 static QDockWidget* m_gui;
QLopDataBase(bool noGUI=false,QObject *parent = 0);
QLop dataBase started, WIP.
r12 ~QLopDataBase();
static QLopDataBase* _self;
public:
Fixed bug #388...
r14 QDockWidget* getGUI();
static void init(bool noGUI=false,QObject *parent = 0);
const QString& serviceName();
QLop dataBase started, WIP.
r12 static int addData(QLopData* data);
static int addData(const QLopDataList &data);
Fixed bug #388...
r14 static int removeData(QLopData* data);
static int removeData(const QLopDataList &data);
QLop dataBase started, WIP.
r12 static QLopDataBase* self();
static int count();
static QLopData* getData(const QString& name);
static QLopData* getData(int ID);
Spec file ready for rpm packaging....
r13 QLopData* getDataFromIdex(int index);
QLop dataBase started, WIP.
r12 signals:
Fixed bug #388...
r14 void DBChanged();
QLop dataBase started, WIP.
r12 public slots:
private:
static QList<QLopData*>* m_dataBase;
};
#endif // QLOPDATABASE_H