File: qexample.h

package info (click to toggle)
qwebdavlib 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 232 kB
  • sloc: cpp: 1,356; makefile: 17
file content (34 lines) | stat: -rw-r--r-- 500 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef QEXAMPLE_H
#define QEXAMPLE_H

#include <QObject>

#include <qwebdav.h>
#include <qwebdavdirparser.h>
#include <qwebdavitem.h>

class QExample : public QObject
{
    Q_OBJECT

    QWebdav w;
    QWebdavDirParser p;
    QString m_path;
    QList<QNetworkReply *> m_replyList;

public:
    QExample(QObject* parent = 0);
    
signals:
    
public slots:
    void printList();
    void printError(QString errorMsg);
    void replySkipRead();

public:
    void start();

};

#endif // QEXAMPLE_H