1
0
mirror of https://gitlab.com/comunic/comunicterm synced 2024-09-28 02:52:46 +00:00
comunicterm/helpers/conversationshelper.h

24 lines
320 B
C
Raw Permalink Normal View History

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