root/src/torrentclient.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef TORRENTCLIENT_H
#define TORRENTCLIENT_H

#include <QObject>

class TorrentClient : public QObject
{
    Q_OBJECT
public:
    explicit TorrentClient(QObject *parent = 0);
    virtual bool addTorrent(QString filePath) = 0;
signals:
    
public slots:
    
};

#endif // TORRENTCLIENT_H