455723cede
basic skelton for all classes setup and then i will fill in all code later, it's not compilable at this time.
18 lines
219 B
C++
18 lines
219 B
C++
#ifndef FILE_ITEM_H
|
|
#define FILE_ITEM_H
|
|
|
|
#include <QWidget>
|
|
#include <QLabel>
|
|
#include <QHBoxLayout>
|
|
|
|
class FileItem : public QLabel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
FileItem(QWidget *parent = 0);
|
|
};
|
|
|
|
#endif // FILE_ITEM_H
|