QGIS/external/mdal/mdal_loader.hpp

28 lines
566 B
C++
Raw Normal View History

/*
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>
2018-05-16 11:20:25 +02:00
#include <memory>
#include <vector>
#include "mdal.h"
2018-07-18 09:00:34 +02:00
#include "mdal_data_model.hpp"
namespace MDAL
{
class Loader
{
public:
2018-05-16 11:20:25 +02:00
static std::unique_ptr< Mesh > load( const std::string &meshFile, MDAL_Status *status );
static void loadDatasets( Mesh *mesh, const std::string &datasetFile, MDAL_Status *status );
};
} // namespace MDAL
#endif //MDAL_LOADER_HPP