//Author: Max Howell , (C) 2003-4 //Copyright: See COPYING file that comes with this distribution #ifndef LOCALLISTER_H #define LOCALLISTER_H #include class Directory; template class Chain; namespace Filelight { class LocalLister : public QThread { public: LocalLister( const QString &path, Chain *cachedTrees, QObject *parent ); static bool readMounts(); private: QString m_path; Chain *m_trees; QObject *m_parent; private: virtual void run(); Directory *scan( const QCString&, const QCString& ); private: static QStringList s_localMounts, s_remoteMounts; //TODO namespace }; } #endif