summaryrefslogtreecommitdiff
path: root/share/qtcreator/templates/wizards/classes/itemmodel/listmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'share/qtcreator/templates/wizards/classes/itemmodel/listmodel.cpp')
-rw-r--r--share/qtcreator/templates/wizards/classes/itemmodel/listmodel.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/share/qtcreator/templates/wizards/classes/itemmodel/listmodel.cpp b/share/qtcreator/templates/wizards/classes/itemmodel/listmodel.cpp
index b6c9c4b430..921267d015 100644
--- a/share/qtcreator/templates/wizards/classes/itemmodel/listmodel.cpp
+++ b/share/qtcreator/templates/wizards/classes/itemmodel/listmodel.cpp
@@ -35,6 +35,24 @@ int %{CN}::rowCount(const QModelIndex &parent) const
// FIXME: Implement me!
}
+@if %{DynamicFetch}
+
+bool %{CN}::hasChildren(const QModelIndex &parent) const
+{
+ // FIXME: Implement me!
+}
+
+bool %{CN}::canFetchMore(const QModelIndex &parent) const
+{
+ // FIXME: Implement me!
+ return false;
+}
+
+void %{CN}::fetchMore(const QModelIndex &parent)
+{
+ // FIXME: Implement me!
+}
+@endif
QVariant %{CN}::data(const QModelIndex &index, int role) const
{