diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-12-15 12:34:41 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-12-16 00:59:32 +0100 |
commit | a8f5272dde15fc085ff3c81f65b441e52b41b12c (patch) | |
tree | b9dbed8bdc54429adfdb921682e63a27d08da213 /src/protocolhandler.h | |
parent | First form of protocol handling (diff) | |
download | rekonq-a8f5272dde15fc085ff3c81f65b441e52b41b12c.tar.xz |
We have file management :D
Diffstat (limited to 'src/protocolhandler.h')
-rw-r--r-- | src/protocolhandler.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/protocolhandler.h b/src/protocolhandler.h index b857f27b..09a28c21 100644 --- a/src/protocolhandler.h +++ b/src/protocolhandler.h @@ -30,6 +30,8 @@ class QNetworkRequest; class QWebFrame; +class QString; +class KUrl; class ProtocolHandler @@ -40,6 +42,9 @@ public: ~ProtocolHandler(); bool handle(const QNetworkRequest &request, QWebFrame *frame); + +private: + QString fileHandling(const KUrl &url); }; #endif // PROTOCOL_HANDLER_H |