ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
license_widget.h
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 #pragma once
9 
10 #include <QtWidgets>
11 
12 namespace colmap {
13 
14 class LicenseWidget : public QTextEdit {
15 public:
16  explicit LicenseWidget(QWidget* parent);
17 
18 private:
19  QString GetCOLMAPLicense() const;
20  QString GetFLANNLicense() const;
21  QString GetGraclusLicense() const;
22  QString GetLSDLicense() const;
23 #ifdef PBA_ENABLED
24  QString GetPBALicense() const;
25 #endif
26  QString GetPoissonReconLicense() const;
27  QString GetSiftGPULicense() const;
28  QString GetSQLiteLicense() const;
29  QString GetVLFeatLicense() const;
30 };
31 
32 } // namespace colmap
LicenseWidget(QWidget *parent)