mirror of
https://gitlab.com/comunic/comunicterm
synced 2024-11-16 10:31:06 +00:00
24 lines
320 B
C++
24 lines
320 B
C++
/**
|
|
* Conversations helper
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
class Conversation;
|
|
class ConversationsList;
|
|
|
|
class ConversationsHelper
|
|
{
|
|
public:
|
|
ConversationsHelper();
|
|
|
|
/**
|
|
* Get the list of conversations of the current user
|
|
*/
|
|
static ConversationsList GetList();
|
|
};
|