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

20 lines
325 B
C++
Raw Normal View History

2020-01-07 20:08:18 +00:00
#include <iostream>
2020-01-07 20:53:27 +00:00
#include "api_request.h"
2020-01-08 16:43:04 +00:00
#include "loginscreen.h"
2020-01-07 20:08:18 +00:00
using namespace std;
int main()
{
cout << "Comunic Term (c) Pierre HUBERT" << endl;
2020-01-07 20:53:27 +00:00
2020-01-08 16:43:04 +00:00
// First, we need to sign in user
if(!LoginScreen().exec()) {
cerr << "Could not sign in user!" << endl;
return -1;
}
2020-01-07 20:53:27 +00:00
2020-01-07 20:08:18 +00:00
return 0;
}