ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
main.cpp
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
8 #include "Window.h"
9 
10 int main(int argc, char **argv)
11 {
12  QApplication app(argc, argv);
13  app.setApplicationVersion("1.0");
14  app.setApplicationName("Bob's Badass App");
15 
16  Window window;
17  window.show();
18 
19  return app.exec();
20 }
int main(int argc, char *argv[])
Definition: main.cpp:271