-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.cpp
More file actions
45 lines (32 loc) · 873 Bytes
/
main.cpp
File metadata and controls
45 lines (32 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "UI\w_login\loginwindow.h"
#include <QApplication>
#include <iostream>
#include <fstream>
#include <string>
#include <QStyleFactory>
#include "domain/database.h"
/*
TODO:
[
btn.pressed -> btn.clicked
jsnBoard and OpenedBoard does not affected by inner class changes
board owner button to boardedit
BoardEdit multi fix
Card management
Pictures Management
CardColourManagament
]
*/
int main(int argc, char *argv[])
{
Database::ParseBoardsData();
Database::ParseUserData();
//Database::AddNewCardToColumn("BIB", 3, "NewNeWnEw");
//Database::DeleteOwnerFromBoard("BIB", "notfound");
//Database::DeleteCardFromColumn("BIB", 0, 0);
QApplication a(argc, argv);
a.setStyle(QStyleFactory::create("Fusion"));
LoginWindow w;
w.show();
return a.exec();
}