1
0
mirror of https://gitlab.com/comunic/comunicterm synced 2024-07-03 14:09:16 +00:00
comunicterm/loginscreen.h

19 lines
214 B
C
Raw Normal View History

2020-01-08 16:43:04 +00:00
/**
* Login screen
*
* @author Pierre HUBERT
*/
2020-01-08 19:33:16 +00:00
#include <string>
2020-01-08 16:43:04 +00:00
class LoginScreen
{
public:
LoginScreen();
bool exec();
2020-01-08 19:33:16 +00:00
private:
void getCredentials(std::string &email, std::string &pass);
2020-01-08 16:43:04 +00:00
};