1
0
mirror of https://gitlab.com/comunic/comunicterm synced 2024-10-04 22:12:44 +00:00
comunicterm/helpers/conversationshelper.h

23 lines
303 B
C
Raw Normal View History

2020-01-12 19:24:35 +00:00
/**
* Conversations helper
*
* @author Pierre HUBERT
*/
#pragma once
#include <vector>
class Conversation;
class ConversationsHelper
{
public:
ConversationsHelper();
/**
* Get the list of conversations of the current user
*/
static std::vector<Conversation> GetList();
};