summaryrefslogtreecommitdiffstats
path: root/core/divelogexportlogic.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/divelogexportlogic.h')
-rw-r--r--core/divelogexportlogic.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/core/divelogexportlogic.h b/core/divelogexportlogic.h
new file mode 100644
index 000000000..84f09c362
--- /dev/null
+++ b/core/divelogexportlogic.h
@@ -0,0 +1,20 @@
+#ifndef DIVELOGEXPORTLOGIC_H
+#define DIVELOGEXPORTLOGIC_H
+
+struct htmlExportSetting {
+ bool exportPhotos;
+ bool selectedOnly;
+ bool listOnly;
+ QString fontFamily;
+ QString fontSize;
+ int themeSelection;
+ bool subsurfaceNumbers;
+ bool yearlyStatistics;
+ QString themeFile;
+};
+
+void file_copy_and_overwrite(const QString &fileName, const QString &newName);
+void exportHtmlInitLogic(const QString &filename, struct htmlExportSetting &hes);
+
+#endif // DIVELOGEXPORTLOGIC_H
+