2020-12-14 21:42:07 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
// Various functions that format data into QStrings or QStringLists
|
|
|
|
#ifndef STRING_FORMAT_H
|
|
|
|
#define STRING_FORMAT_H
|
|
|
|
|
|
|
|
#include <QStringList>
|
|
|
|
|
|
|
|
struct dive;
|
|
|
|
|
|
|
|
QString formatSac(const dive *d);
|
|
|
|
QString formatNotes(const dive *d);
|
|
|
|
QString format_gps_decimal(const dive *d);
|
|
|
|
QStringList formatGetCylinder(const dive *d);
|
|
|
|
QStringList formatStartPressure(const dive *d);
|
|
|
|
QStringList formatEndPressure(const dive *d);
|
|
|
|
QStringList formatFirstGas(const dive *d);
|
|
|
|
QStringList formatFullCylinderList();
|
2020-12-14 22:21:58 +00:00
|
|
|
QStringList formatCylinders(const dive *d);
|
2020-12-14 21:42:07 +00:00
|
|
|
|
|
|
|
#endif
|