blob: f7bbfff8bf2cab94b7d6720a42e80656adaf7ec3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef FILEHANDLER_HPP
#define FILEHANDLER_HPP
#include <QObject>
#include "protocolhandler.hpp"
class FileHandler : public ProtocolHandler
{
Q_OBJECT
public:
FileHandler();
bool supportsScheme(QString const & scheme) const override;
bool startRequest(QUrl const & url) override;
bool isInProgress() const override;
bool cancelRequest() override;
};
#endif // FILEHANDLER_HPP
|