You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filelight/src/part/remoteLister.h

30 lines
541 B

//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
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