Files
qt-creator/doc/examples/dirmodelplugin/filesystemmodel.cpp
Abhishek Patil abcb9358c2 Qt Creator Plugin HOWTO documentation first and second cut
Signed-off-by: Abhishek Patil <abhishek.patil@vcreatelogic.com>

Merge-request: 145
Reviewed-by: con <qtc-committer@nokia.com>
2010-06-21 17:32:15 +02:00

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;
}