forked from qt-creator/qt-creator
21 lines
266 B
C++
21 lines
266 B
C++
|
|
#include "filesystemmodel.h"
|
||
|
|
|
||
|
|
FileSystemModel::FileSystemModel(QObject* parent)
|
||
|
|
:QFileSystemModel(parent)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
FileSystemModel::~FileSystemModel()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
int FileSystemModel::columnCount(const QModelIndex &parent ) const
|
||
|
|
{
|
||
|
|
Q_UNUSED(parent)
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
|