blob: 56d31c5b0cbf4741e9dc804f88c658fcd56cc56c (
plain)
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
|
//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
{
TQ_OBJECT
public:
RemoteLister( const KURL &url, TQWidget *parent );
~RemoteLister();
private slots:
void completed();
void _completed();
void canceled();
private:
class Store *m_root, *m_store;
};
}
#endif
|