first prototype

This commit is contained in:
Blue 2020-04-18 02:17:47 +03:00
parent 494afcf2b5
commit 83a2e6af85
13 changed files with 365 additions and 244 deletions

View file

@ -32,6 +32,7 @@
#include "contact.h"
#include "group.h"
#include "room.h"
#include "reference.h"
namespace Models
{
@ -87,7 +88,7 @@ private:
Item* root;
std::map<QString, Account*> accounts;
std::map<ElId, Group*> groups;
std::multimap<ElId, Contact*> contacts;
std::map<ElId, Contact*> contacts;
std::map<ElId, Room*> rooms;
private slots: