-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSchoolDataBase.pro
More file actions
107 lines (99 loc) · 3.37 KB
/
Copy pathSchoolDataBase.pro
File metadata and controls
107 lines (99 loc) · 3.37 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
QT += core gui sql
CONFIG += c++14
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = SchoolDataBase
TEMPLATE = app
DEFINES += QT_DEPRECATED_WARNINGS Q_COMPILER_INITIALIZER_LISTS
SOURCES += \
main.cpp \
Data/DAO/AdministratorsDAO.cpp \
Data/Entity/Parent.cpp \
Data/Entity/Pupil.cpp \
Utils/DataBase.cpp \
Views/Forms/LoginForm.cpp \
Views/Forms/MainForm.cpp \
Data/Service/AdministratorsService.cpp \
Data/DAO/PupilsDAO.cpp \
Views/Forms/PagesMainForm/MainFormPageSettings.cpp \
Data/Entity/Employe.cpp \
Data/DAO/EmployeesDAO.cpp \
Data/Service/EmployeesService.cpp \
Data/DAO/ProfessionsDAO.cpp \
Data/DAO/PredmetsDAO.cpp \
Views/Forms/PagesMainForm/MainFormPageEmployees.cpp \
Views/Dialogs/AddingEmployeDialog.cpp \
Views/Dialogs/AddingPupilDialog.cpp \
Views/Dialogs/AddingParentDialog.cpp \
Data/Service/ProfessionsService.cpp \
Utils/Logger.cpp \
Views/Forms/PagesMainForm/MainFormPage.cpp \
Data/Entity/Teacher.cpp \
Views/Forms/PagesMainForm/MainFormPagePupils.cpp \
Data/Service/PupilsService.cpp \
Data/DAO/ClassesDAO.cpp \
Data/Service/ClassesService.cpp \
Data/DAO/ParentsDAO.cpp \
Data/Service/ParentsService.cpp \
Data/DAO/TeachersDAO.cpp \
Data/Service/TeachersService.cpp \
Views/Forms/PagesMainForm/MainFormPageTeachers.cpp \
Data/Service/PredmetsService.cpp
HEADERS += \
Exceptions/NotWorkingRequest.h \
Data/DAO/AdministratorsDAO.h \
Data/DAO/IAdministratorsDAO.h \
Data/DAO/IClassesDAO.h \
Data/DAO/IProfessionsDAO.h \
Data/DAO/IPupilsDAO.h \
Data/Entity/Parent.h \
Data/Entity/Pupil.h \
Utils/DataBase.h \
Views/Forms/LoginForm.h \
Views/Forms/MainForm.h \
Data/Service/IAdministratorsService.h \
Data/Service/AdministratorsService.h \
Exceptions/AdministratorNotFound.h \
Data/DAO/PupilsDAO.h \
Views/Forms/PagesMainForm/MainFormPageSettings.h \
Data/Entity/Employe.h \
Data/DAO/EmployeesDAO.h \
Data/DAO/IEmployeesDAO.h \
Data/Service/IEmployeesService.h \
Data/Service/EmployeesService.h \
Data/DAO/ProfessionsDAO.h \
Data/DAO/IPredmetsDAO.h \
Data/DAO/PredmetsDAO.h \
Views/Forms/PagesMainForm/MainFormPageEmployees.h \
Views/Dialogs/AddingEmployeDialog.h \
Views/Dialogs/AddingPupilDialog.h \
Views/Dialogs/AddingParentDialog.h \
Data/Service/ProfessionsService.h \
Data/Service/IProfessionsService.h \
Utils/Logger.h \
Views/Forms/PagesMainForm/MainFormPage.h \
Data/Entity/Teacher.h \
Views/Forms/PagesMainForm/MainFormPagePupils.h \
Data/Service/IPupilsService.h \
Data/Service/PupilsService.h \
Data/DAO/ClassesDAO.h \
Data/Service/IClassesService.h \
Data/Service/ClassesService.h \
Data/DAO/IParentsDAO.h \
Data/DAO/ParentsDAO.h \
Data/Service/IParentsService.h \
Data/Service/ParentsService.h \
Data/DAO/ITeachersDAO.h \
Data/DAO/TeachersDAO.h \
Data/Service/ITeachersService.h \
Data/Service/TeachersService.h \
Views/Forms/PagesMainForm/MainFormPageTeachers.h \
Data/Service/IPredmetsService.h \
Data/Service/PredmetsService.h
FORMS += \
Views/Forms/LogInForm.ui \
Views/Forms/MainForm.ui \
Views/Dialogs/AddingEmployeDialog.ui \
Views/Dialogs/AddingPupilDialog.ui \
Views/Dialogs/AddingParentDialog.ui
RESOURCES += \
Resources/img.qrc