File: directoryreader.h

package info (click to toggle)
texstudio 2.3%2Bdebian-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 20,992 kB
  • sloc: cpp: 61,734; ansic: 4,300; xml: 726; sh: 125; makefile: 25
file content (23 lines) | stat: -rw-r--r-- 381 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef DIRECTORYREADER_H
#define DIRECTORYREADER_H

#include "mostQtHeaders.h"
#include <QThread>

class directoryReader : public QThread
{
    Q_OBJECT
public:
    explicit directoryReader(QObject *parent = 0);

signals:
    void directoryLoaded(QString path,QSet<QString> content);

public slots:
    void readDirectory(QString path);

private:

};

#endif // DIRECTORYREADER_H