~charlesk/keeper/fix-slow-tar-creator-test

« back to all changes in this revision

Viewing changes to src/storage-framework/storage_framework_client.h

  • Committer: Xavi Garcia Mena
  • Date: 2016-11-11 14:50:06 UTC
  • Revision ID: xavi.garcia.mena@canonical.com-20161111145006-x2jova8adumkw8jv
Added restore classes, fake restore helper, integration test

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include "util/connection-helper.h"
24
24
#include "storage-framework/uploader.h"
 
25
#include "storage-framework/downloader.h"
25
26
 
26
27
#include <unity/storage/qt/client/client-api.h>
27
28
 
43
44
    virtual ~StorageFrameworkClient();
44
45
 
45
46
    QFuture<std::shared_ptr<Uploader>> get_new_uploader(int64_t n_bytes, QString const & dir_name, QString const & file_name);
46
 
    QFuture<unity::storage::qt::client::Downloader::SPtr> get_new_downloader(QString const & dir_name, QString const & file_name);
 
47
    QFuture<std::shared_ptr<Downloader>> get_new_downloader(QString const & dir_name, QString const & file_name);
47
48
    QFuture<QVector<QString>> get_keeper_dirs();
48
49
 
49
50
    static QString const KEEPER_FOLDER;