Turn around attribute order to match HDF5 writer

This commit is contained in:
2020-05-26 14:56:17 +02:00
parent 6abdd0fb04
commit c0668a97ba
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -6,8 +6,8 @@
class BufferBinaryWriter {
const std::string device_name_;
const std::string root_folder_;
const std::string device_name_;
std::string latest_filename_;
std::string current_output_filename_;
@@ -19,8 +19,8 @@ class BufferBinaryWriter {
public:
BufferBinaryWriter(
const std::string& device_name,
const std::string& root_folder);
const std::string& root_folder,
const std::string& device_name);
virtual ~BufferBinaryWriter();
+3 -3
View File
@@ -12,10 +12,10 @@
using namespace std;
BufferBinaryWriter::BufferBinaryWriter(
const string& device_name,
const string& root_folder) :
device_name_(device_name),
const string& root_folder,
const string& device_name):
root_folder_(root_folder),
device_name_(device_name),
latest_filename_(root_folder + "/" + device_name + "/LATEST"),
current_output_filename_(""),
output_file_fd_(-1)