DamBreak++ Wave Simulator 0.3
DamBreak++ Simulation Framework
Loading...
Searching...
No Matches
Testvs19_FileFinalReport.h
Go to the documentation of this file.
1
2#pragma once
3
4// SfxLib package include
5#include "include/Sfx_IFinalReport.h"
6
7// forward declaration
8namespace Dsn { class Simulation; }
9
10namespace Testvs19
11{
19 class FileFinalReport : public Sfx::IFinalReport
20 {
21 public:
26 void report( const Sfx::PhysicalSystem* aPhySys) override final;
32 void report( Sfx::PhySystem* aPhysys) override {/* deprecated, but keep it backward compatibility*/}
33 };
34} // End of namespace
Defines a simple way of reporting final statistics or calculations that occured in the simulation....
Definition Testvs19_FileFinalReport.h:20
void report(Sfx::PhySystem *aPhysys) override
Use this method to write any final data or calculation to stdout for the user of the simulation.
Definition Testvs19_FileFinalReport.h:32
void report(const Sfx::PhysicalSystem *aPhySys) override final
Use this method to write any final data or calculation to stdout for the user of the simulation.
Definition Testvs19_FileFinalReport.cxx:20
Definition Testvs19_FileFinalReport.h:8
Definition Testvs19_BaseRhsPhysicsAlgorithm.cpp:19