1
0
mirror of https://gitlab.com/comunic/comunicterm synced 2024-07-03 14:09:16 +00:00
comunicterm/conversations_screen.cpp

23 lines
367 B
C++

#include <iostream>
#include "conversations_screen.h"
#include "helpers/conversationshelper.h"
#include "entities/conversation.h"
using namespace std;
void showConversationsScreen()
{
auto list = ConversationsHelper::GetList();
for(auto c : list)
cout << "Conv: " << c.name() << endl;
cout << "done" << endl;
string s;
cin >> s;
}