#include #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; }