MPS-Basic
Loading...
Searching...
No Matches
prof.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "interface.hpp"
4
5namespace ParticlesLoader {
6
11class Prof : public Interface {
12public:
13 std::pair<double, Particles> load(const fs::path& path, double defaultDensity) override;
14 ~Prof() override;
15 Prof();
16};
17} // namespace ParticlesLoader
Class for loading particles from a prof file.
Definition prof.hpp:11
std::pair< double, Particles > load(const fs::path &path, double defaultDensity) override
Load particles.
Definition prof.cpp:13
~Prof() override
Definition prof.cpp:42