mirror of
https://gitlab.com/comunic/comunicterm
synced 2024-11-16 10:31:06 +00:00
23 lines
367 B
C++
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;
|
||
|
}
|