~jamesh/storage-provider-webdav/copyright

« back to all changes in this revision

Viewing changes to src/OwncloudProvider.h

  • Committer: Tarmac
  • Author(s): James Henstridge
  • Date: 2016-09-27 06:45:54 UTC
  • mfrom: (7.2.8 roots)
  • Revision ID: tarmac-20160927064554-27pxre01wza0126i
Implement the roots() provider method.

Approved by unity-api-1-bot, Michi Henning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
    OwncloudProvider();
9
9
    virtual ~OwncloudProvider();
10
10
 
11
 
protected:
12
11
    QUrl base_url(
13
12
        unity::storage::provider::Context const& ctx) const override;
14
 
    void add_credentials(
15
 
        QNetworkRequest *request,
 
13
    QNetworkReply *send_request(
 
14
        QNetworkRequest& request, QByteArray const& verb, QIODevice* data,
16
15
        unity::storage::provider::Context const& ctx) const override;
17
16
};