summaryrefslogtreecommitdiffstats
path: root/src/part/remoteLister.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/part/remoteLister.h')
-rw-r--r--src/part/remoteLister.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/part/remoteLister.h b/src/part/remoteLister.h
new file mode 100644
index 0000000..4736dc1
--- /dev/null
+++ b/src/part/remoteLister.h
@@ -0,0 +1,28 @@
+//Author: Max Howell <max.howell@methylblue.com>, (C) 2003-4
+//Copyright: See COPYING file that comes with this distribution
+
+#ifndef REMOTELISTER_H
+#define REMOTELISTER_H
+
+#include <kdirlister.h>
+
+namespace Filelight
+{
+ class RemoteLister : public KDirLister
+ {
+ Q_OBJECT
+ public:
+ RemoteLister( const KURL &url, QWidget *parent );
+ ~RemoteLister();
+
+ private slots:
+ void completed();
+ void _completed();
+ void canceled();
+
+ private:
+ class Store *m_root, *m_store;
+ };
+}
+
+#endif