MPS-Basic
Loading...
Searching...
No Matches
vtu.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "interface.hpp"
4
5namespace ParticlesLoader {
6
11class Vtu : public Interface {
12public:
19 std::pair<double, Particles> load(const fs::path& path, double defaultDensity) override;
20
21 ~Vtu() override;
22 Vtu();
23};
24} // namespace ParticlesLoader
Class for loading particles from a VTU file.
Definition vtu.hpp:11
~Vtu() override
Definition vtu.cpp:130
std::pair< double, Particles > load(const fs::path &path, double defaultDensity) override
Load particles from a VTU file.
Definition vtu.cpp:16