QRODS Test Suite
collectionclientsync.h
1 #ifndef COLLECTIONCLIENTSYNC_H
2 #define COLLECTIONCLIENTSYNC_H
3 
4 #include "collectionclient.h"
5 #include "filelistingentry.h"
6 #include <QObject>
7 
8 class CollectionClientSync: QObject
9 {
10  Q_OBJECT
11 public:
12  CollectionClientSync(CollectionClient*);
13 
14  //FileListingEntry* getCollectionDataPaged(FileListingEntry *entry, QString &type, int offset);
15  FileListingEntry* getCollectionDataLazy(FileListingEntry* entry);
16 public slots:
17  void getPageData(FileListingEntry*, int firstIndex, int endIndex);
18 private:
19  CollectionClient* client;
20  FileListingEntry* result;
21 };
22 
23 #endif // COLLECTIONCLIENTSYNC_H
Definition: collectionclientsync.h:8
FileListingEntry * getCollectionDataLazy(FileListingEntry *entry)
CollectionClientSync::getCollectionDataLazy.
Definition: collectionclientsync.cpp:16