QGIS/external/mdal/frmts/mdal_2dm.hpp
2018-07-19 11:30:52 +02:00

30 lines
498 B
C++

/*
MDAL - Mesh Data Abstraction Library (MIT License)
Copyright (C) 2018 Peter Petrik (zilolv at gmail dot com)
*/
#ifndef MDAL_2DM_HPP
#define MDAL_2DM_HPP
#include <string>
#include <memory>
#include "mdal_data_model.hpp"
#include "mdal.h"
namespace MDAL
{
class Loader2dm
{
public:
Loader2dm( const std::string &meshFile );
std::unique_ptr< Mesh > load( MDAL_Status *status );
private:
std::string mMeshFile;
};
} // namespace MDAL
#endif //MDAL_2DM_HPP