aboutsummaryrefslogtreecommitdiff
path: root/src/fluid_buffer.h
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-09-09 12:15:07 +0200
committerAdrian Kummerlaender2018-09-09 12:15:07 +0200
commit996916a493fb55437208e50a3a9fda7c04423747 (patch)
treed9fd3037172825123dbfc364bb4a9f42a7a66a98 /src/fluid_buffer.h
parentacdba1d0ba0de53df326956352ff09bea2b80c6a (diff)
downloadboltzbub-996916a493fb55437208e50a3a9fda7c04423747.tar
boltzbub-996916a493fb55437208e50a3a9fda7c04423747.tar.gz
boltzbub-996916a493fb55437208e50a3a9fda7c04423747.tar.bz2
boltzbub-996916a493fb55437208e50a3a9fda7c04423747.tar.lz
boltzbub-996916a493fb55437208e50a3a9fda7c04423747.tar.xz
boltzbub-996916a493fb55437208e50a3a9fda7c04423747.tar.zst
boltzbub-996916a493fb55437208e50a3a9fda7c04423747.zip
Extract result path generation
Diffstat (limited to 'src/fluid_buffer.h')
-rw-r--r--src/fluid_buffer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fluid_buffer.h b/src/fluid_buffer.h
index 1d802c0..72518bb 100644
--- a/src/fluid_buffer.h
+++ b/src/fluid_buffer.h
@@ -1,6 +1,7 @@
#pragma once
#include <memory>
+#include <string>
#include "vector.h"
@@ -27,5 +28,5 @@ public:
Velocity& velocity(std::size_t x, std::size_t y);
Velocity& velocity(Vector<std::size_t> pos);
- void writeAsVTK(int time);
+ void writeAsVTK(const std::string& path);
};