Skip to content

Commit

Permalink
updated the Analysis templates (C++) to include application name.
Browse files Browse the repository at this point in the history
Former-commit-id: b4f1785
  • Loading branch information
Andrew Morris committed Jun 6, 2018
1 parent d8fffd5 commit 57bd21a
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
app.setApplicationName("Analyze Hotspots - C++");

// Initialize the sample
AnalyzeHotspots::init();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);

app.setApplicationName("Analyze Viewshed - C++");
// Initialize the sample
AnalyzeViewshed::init();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

int main(int argc, char *argv[])
{
app.setApplicationName("Distance Measurement Analysis - C++");
#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
// Linux requires 3.2 OpenGL Context
// in order to instance 3D symbols
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

int main(int argc, char *argv[])
{
app.setApplicationName("Line of Sight Location - C++");
#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
// Linux requires 3.2 OpenGL Context
// in order to instance 3D symbols
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);

app.setApplicationName("Statistical Query - C++");
// Initialize the sample
StatisticalQuery::init();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);

app.setApplicationName("Statistical Query Group Sort - C++");
// Initialize the sample
StatisticalQueryGroupSort::init();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@

int main(int argc, char *argv[])
{
app.setApplicationName("Viewshed Camera - C++");

#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
// Linux requires 3.2 OpenGL Context
// in order to instance 3D symbols
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

int main(int argc, char *argv[])
{
app.setApplicationName("Viewshed Geoelement- C++");
#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
// Linux requires 3.2 OpenGL Context
// in order to instance 3D symbols
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

int main(int argc, char *argv[])
{
app.setApplicationName("Viewshed Location - C++");
#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
// Linux requires 3.2 OpenGL Context
// in order to instance 3D symbols
Expand Down

0 comments on commit 57bd21a

Please sign in to comment.