mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
20 lines
533 B
C
20 lines
533 B
C
|
// 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();
|
||
|
|
||
|
#endif
|