QGIS/external/mdal/mdal_loader.hpp
Peter Petrik 50422a1165 [FEATURE] QgsMeshLayer part 1: Reading raw mesh
Introducting MDAL, QgsMeshLayer, mesh data providers (mesh_memory, mdal)
to read and visualize raw meshes: vertices and faces. Support dragging
2dm files from browser on canvas to visualize 2dm meshes.
Support for QgsMeshLayer in Python API.
2018-04-19 10:50:33 +02:00

25 lines
405 B
C++

/*
MDAL - Mesh Data Abstraction Library (MIT License)
Copyright (C) 2018 Peter Petrik (zilolv at gmail dot com)
*/
#ifndef MDAL_LOADER_HPP
#define MDAL_LOADER_HPP
#include <string>
#include "mdal.h"
#include "mdal_defines.hpp"
namespace MDAL
{
class Loader
{
public:
static Mesh *load( const std::string &meshFile, Status *status );
};
} // namespace MDAL
#endif //MDAL_LOADER_HPP