conversations: support new APIs for user search

Gitlab: #4
Change-Id: I7570099c20d2d406e538aea4c366ba7d85777686
diff --git a/src/smartlistmodel.h b/src/smartlistmodel.h
index 8ae7dca..bdf3592 100644
--- a/src/smartlistmodel.h
+++ b/src/smartlistmodel.h
@@ -82,6 +82,8 @@
     Q_INVOKABLE void setConferenceableFilter(const QString &filter = {});
     Q_INVOKABLE void toggleSection(const QString &section);
     Q_INVOKABLE int currentUidSmartListModelIndex();
+    Q_INVOKABLE void fillConversationsList();
+    Q_INVOKABLE void updateConversation(const QString &conv);
 
 private:
     QString accountId_;
@@ -96,4 +98,5 @@
     Type listModelType_;
     QMap<QString, bool> sectionState_;
     QMap<ConferenceableItem, ConferenceableValue> conferenceables_;
-};
\ No newline at end of file
+    ConversationModel::ConversationQueue conversations_;
+};