1
0
mirror of https://gitlab.com/comunic/comunicterm synced 2024-07-05 23:19:14 +00:00
comunicterm/helpers/userhelper.h

26 lines
328 B
C
Raw Normal View History

2020-01-09 12:43:07 +00:00
/**
* User helper
*
* @author Pierre HUBERT
*/
#pragma once
#include <map>
#include <vector>
#include <entities/user.h>
class UserHelper
{
public:
UserHelper();
static User GetSingle(int id);
static std::map<int, User> getMultiple(std::vector<int> ids);
private:
static std::map<int, User> mCache;
};