Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OCSR
UMANS
Commits
7224853b
Commit
7224853b
authored
Apr 15, 2020
by
VAN TOLL Wouter
Browse files
GUI application now writes basic copyright info to the console.
parent
648bee3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/GUI/main.cpp
View file @
7224853b
...
...
@@ -22,8 +22,19 @@
#include
"UMANSQtGuiApplication.h"
#include
<QtWidgets/QApplication>
void
printBasicInfo
()
{
std
::
cout
<<
"-----------------------------------------------------"
<<
std
::
endl
<<
"UMANS: Unified Microscopic Agent Navigation Simulator"
<<
std
::
endl
<<
"Copyright(C) 2018 - 2020 Inria Rennes Bretagne Atlantique - Rainbow - Julien Pettre"
<<
std
::
endl
<<
"-----------------------------------------------------"
<<
std
::
endl
<<
std
::
endl
;
}
int
main
(
int
argc
,
char
*
argv
[])
{
printBasicInfo
();
QApplication
a
(
argc
,
argv
);
UMANSQtGuiApplication
w
;
w
.
show
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment