1
0
mirror of https://gitlab.com/comunic/comunicterm synced 2024-07-03 14:09:16 +00:00
comunicterm/helpers/userhelper.h
2020-01-09 13:43:07 +01:00

26 lines
328 B
C++

/**
* 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;
};