blob: d9c8d84a59e9826731fd7b6cba9bdc5a61f77d5f (
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 *tqparent );
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
|