RedPanda-CPP/RedPandaIDE/widgets/customfilesystemmodel.cpp

14 lines
326 B
C++
Raw Normal View History

2022-02-13 21:50:20 +08:00
#include "customfilesystemmodel.h"
#include "../vcs/gitmanager.h"
#include "../vcs/gitrepository.h"
CustomFileSystemModel::CustomFileSystemModel(QObject *parent) : QFileSystemModel(parent)
{
}
QVariant CustomFileSystemModel::data(const QModelIndex &index, int role) const
{
return QFileSystemModel::data(index,role);
}