blob: a9a04823581145b035d05a6adc5023ac805d04d0 (
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
30
31
32
33
34
35
|
//Author: Max Howell <max.howell@methylblue.com>, (C) 2003-4
//Copyright: See COPYING file that comes with this distribution
#ifndef LOCALLISTER_H
#define LOCALLISTER_H
#include <tqthread.h>
class Directory;
template<class T> class Chain;
namespace Filelight
{
class LocalLister : public TQThread
{
public:
LocalLister( const TQString &path, Chain<Directory> *cachedTrees, TQObject *parent );
static bool readMounts();
private:
TQString m_path;
Chain<Directory> *m_trees;
TQObject *m_parent;
private:
virtual void run();
Directory *scan( const TQCString&, const TQCString& );
private:
static TQStringList s_localMounts, s_remoteMounts; //TODO namespace
};
}
#endif
|