ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
LasPlugin.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 // ##########################################################################
11 // # #
12 // # CloudViewer PLUGIN: LAS-IO Plugin #
13 // # #
14 // # This program is free software; you can redistribute it and/or modify #
15 // # it under the terms of the GNU General Public License as published by #
16 // # the Free Software Foundation; version 2 of the License. #
17 // # #
18 // # This program is distributed in the hope that it will be useful, #
19 // # but WITHOUT ANY WARRANTY; without even the implied warranty of #
20 // # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
21 // # GNU General Public License for more details. #
22 // # #
23 // # COPYRIGHT: Thomas Montaigu #
24 // # #
25 // ##########################################################################
26 
27 #include "ecvIOPluginInterface.h"
28 
29 class LasPlugin : public QObject
30  , public ccIOPluginInterface
31 {
32  Q_OBJECT
34 
35  Q_PLUGIN_METADATA(IID "ecvcorp.cloudviewer.plugin.LASIO" FILE "../info.json")
36 
37  public:
38  explicit LasPlugin(QObject* parent = nullptr);
39  ~LasPlugin() override = default;
40 
41  // Inherited from ccIOPluginInterface
43 };
LasPlugin(QObject *parent=nullptr)
Definition: LasPlugin.cpp:13
~LasPlugin() override=default
ccIOPluginInterface::FilterList getFilters() override
Returns a list of I/O filter instances.
Definition: LasPlugin.cpp:25
I/O filter plugin interface.
QVector< FileIOFilter::Shared > FilterList
Standard ECV plugin interface.