mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
14 lines
328 B
C++
14 lines
328 B
C++
|
/*
|
||
|
MDAL - Mesh Data Abstraction Library (MIT License)
|
||
|
Copyright (C) 2018 Peter Petrik (zilolv at gmail dot com)
|
||
|
*/
|
||
|
|
||
|
#include "mdal_loader.hpp"
|
||
|
#include "frmts/mdal_2dm.hpp"
|
||
|
|
||
|
MDAL::Mesh *MDAL::Loader::load( const std::string &meshFile, Status *status )
|
||
|
{
|
||
|
MDAL::Loader2dm loader( meshFile );
|
||
|
return loader.load( status );
|
||
|
}
|