diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-05-28 09:55:46 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-10-26 20:33:50 -0700 |
commit | 8fcc074b493970fe45c7592d65bf216bc8bd8c42 (patch) | |
tree | ecc7fb237305a9c33e8dfee802c67b6413360268 /qt-ui/mainwindow.h | |
parent | bb020ae918593b5241e64582847e8d54ede7243d (diff) | |
download | subsurface-8fcc074b493970fe45c7592d65bf216bc8bd8c42.tar.gz |
Support for importing Poseidon MK6 logs
This patch adds support for importing the logs from a Poseidon MK6
rebreather. This DC produces logs that contain of a .txt file that has
all the meta data and a .csv file that contains the sample readings. The
CSV file is different from the others in that it has a line per each
sample reading at given time. Thus we have to merge all the lines from
one point in time into one sample reading of ours.
[Dirk Hohndel: addressed some compiler warnings]
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.h')
-rw-r--r-- | qt-ui/mainwindow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/mainwindow.h b/qt-ui/mainwindow.h index edf33a500..26f4176ac 100644 --- a/qt-ui/mainwindow.h +++ b/qt-ui/mainwindow.h @@ -73,6 +73,7 @@ public: void enableDcShortcuts(); void loadFiles(const QStringList files); void importFiles(const QStringList importFiles); + void importTxtFiles(const QStringList fileNames); void cleanUpEmpty(); void setToolButtonsEnabled(bool enabled); ProfileWidget2 *graphics() const; |