Move the plugin examples to subdir of pluginhowto.

This commit is contained in:
con
2010-06-21 16:12:49 +02:00
parent abcb9358c2
commit 08c8ce32e9
87 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#include "filesystemmodel.h"
FileSystemModel::FileSystemModel(QObject* parent)
:QFileSystemModel(parent)
{
}
FileSystemModel::~FileSystemModel()
{
}
int FileSystemModel::columnCount(const QModelIndex &parent ) const
{
Q_UNUSED(parent)
return 1;
}